get_starlink

Pack: spacex · Endpoint: https://gateway.pipeworx.io/spacex/mcp

Get Starlink satellite info sorted by most recently launched. Returns spaceTrack data including object name, launch date, and decay date.

Parameters

NameTypeRequiredDescription
limitnumbernoNumber of satellites to return (default 20)

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/spacex/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_starlink","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_starlink', {});

More examples

{
  "limit": 50
}

Response shape

Always returns: satellites

FieldTypeDescription
satellitesarrayArray of Starlink satellites
Full JSON Schema
{
  "type": "object",
  "properties": {
    "satellites": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "OBJECT_NAME": {
            "type": [
              "string",
              "null"
            ],
            "description": "Satellite object name"
          },
          "LAUNCH_DATE": {
            "type": [
              "string",
              "null"
            ],
            "description": "Launch date"
          },
          "DECAY_DATE": {
            "type": [
              "string",
              "null"
            ],
            "description": "Decay date if deorbited"
          }
        },
        "required": [
          "OBJECT_NAME",
          "LAUNCH_DATE",
          "DECAY_DATE"
        ]
      },
      "description": "Array of Starlink satellites"
    }
  },
  "required": [
    "satellites"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "spacex": {
      "url": "https://gateway.pipeworx.io/spacex/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026