get_tle

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

Fetch the Two-Line Element (TLE) set for a specific satellite by its NORAD catalog ID. Returns the satellite name, epoch date, and both TLE lines.

Parameters

NameTypeRequiredDescription
norad_idnumberyesNORAD catalog number for the satellite (e.g. 25544 for the ISS, 20580 for Hubble Space Telescope).

Example call

Arguments

{
  "norad_id": 25544
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_tle', {
  "norad_id": 25544
});

More examples

{
  "norad_id": 20580
}

Response shape

Always returns: norad_id, name, epoch, line1, line2

FieldTypeDescription
norad_idnumberNORAD catalog ID of the satellite
namestringName of the satellite
epochstringEpoch date of the TLE set
line1stringFirst line of the Two-Line Element set
line2stringSecond line of the Two-Line Element set
Full JSON Schema
{
  "type": "object",
  "properties": {
    "norad_id": {
      "type": "number",
      "description": "NORAD catalog ID of the satellite"
    },
    "name": {
      "type": "string",
      "description": "Name of the satellite"
    },
    "epoch": {
      "type": "string",
      "description": "Epoch date of the TLE set"
    },
    "line1": {
      "type": "string",
      "description": "First line of the Two-Line Element set"
    },
    "line2": {
      "type": "string",
      "description": "Second line of the Two-Line Element set"
    }
  },
  "required": [
    "norad_id",
    "name",
    "epoch",
    "line1",
    "line2"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026