SpaceX API · Capability

SpaceX API — Starlink

SpaceX API — Starlink. 2 operations. Lead operation: List All Starlink Satellites. Self-contained Naftiko capability covering one Spacex Api business surface.

Run with Naftiko Spacex ApiStarlink

What You Can Do

GET
Liststarlink — List All Starlink Satellites
/v1/starlink
GET
Getstarlinksatellite — Get Starlink Satellite
/v1/starlink/{id}

MCP Tools

list-all-starlink-satellites

List All Starlink Satellites

read-only idempotent
get-starlink-satellite

Get Starlink Satellite

read-only idempotent

Capability Spec

spacex-starlink.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SpaceX API — Starlink
  description: 'SpaceX API — Starlink. 2 operations. Lead operation: List All Starlink Satellites. Self-contained Naftiko
    capability covering one Spacex Api business surface.'
  tags:
  - Spacex Api
  - Starlink
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SPACEX_API_API_KEY: SPACEX_API_API_KEY
capability:
  consumes:
  - type: http
    namespace: spacex-starlink
    baseUri: https://api.spacexdata.com/v5
    description: SpaceX API — Starlink business capability. Self-contained, no shared references.
    resources:
    - name: starlink
      path: /starlink
      operations:
      - name: liststarlink
        method: GET
        description: List All Starlink Satellites
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: starlink-id
      path: /starlink/{id}
      operations:
      - name: getstarlinksatellite
        method: GET
        description: Get Starlink Satellite
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique Starlink satellite identifier
          required: true
  exposes:
  - type: rest
    namespace: spacex-starlink-rest
    port: 8080
    description: REST adapter for SpaceX API — Starlink. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/starlink
      name: starlink
      description: REST surface for starlink.
      operations:
      - method: GET
        name: liststarlink
        description: List All Starlink Satellites
        call: spacex-starlink.liststarlink
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/starlink/{id}
      name: starlink-id
      description: REST surface for starlink-id.
      operations:
      - method: GET
        name: getstarlinksatellite
        description: Get Starlink Satellite
        call: spacex-starlink.getstarlinksatellite
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: spacex-starlink-mcp
    port: 9090
    transport: http
    description: MCP adapter for SpaceX API — Starlink. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-all-starlink-satellites
      description: List All Starlink Satellites
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spacex-starlink.liststarlink
      outputParameters:
      - type: object
        mapping: $.
    - name: get-starlink-satellite
      description: Get Starlink Satellite
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spacex-starlink.getstarlinksatellite
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.