get_iss_location
Pack: science · Endpoint: https://gateway.pipeworx.io/science/mcp
Get the current position of the International Space Station. Returns latitude, longitude, altitude, and velocity.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/science/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_iss_location","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_iss_location', {});
Response shape
Always returns: latitude, longitude, timestamp
| Field | Type | Description |
|---|---|---|
latitude | number | ISS latitude coordinate |
longitude | number | ISS longitude coordinate |
timestamp | number | Unix timestamp of observation |
Full JSON Schema
{
"type": "object",
"properties": {
"latitude": {
"type": "number",
"description": "ISS latitude coordinate"
},
"longitude": {
"type": "number",
"description": "ISS longitude coordinate"
},
"timestamp": {
"type": "number",
"description": "Unix timestamp of observation"
}
},
"required": [
"latitude",
"longitude",
"timestamp"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"science": {
"url": "https://gateway.pipeworx.io/science/mcp"
}
}
}
See Getting Started for client-specific install steps.