get_rockets
Pack: spacex · Endpoint: https://gateway.pipeworx.io/spacex/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_rockets for the schema, then POST the same URL with its arguments for the data.
List SpaceX rocket configurations (Falcon 1, Falcon 9, Falcon Heavy, Starship, …). Returns name, family, reusability, maiden flight, launch cost, launch/success counts, and success rate.
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_rockets","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_rockets', {});
Response shape
| Field | Type | Description |
|---|---|---|
rockets | array | Array of SpaceX rockets |
_source | string | |
_fetched_at | string |
Full JSON Schema
{
"type": "object",
"properties": {
"rockets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Rocket name"
},
"family": {
"type": "string"
},
"reusable": {
"type": "boolean"
},
"description": {
"type": "string",
"description": "Rocket description"
},
"launch_count": {
"type": "number"
},
"maiden_flight": {
"type": [
"string",
"null"
]
},
"failed_launches": {
"type": "number"
},
"launch_cost_usd": {
"type": [
"number",
"null"
]
},
"success_rate_pct": {
"type": [
"number",
"null"
],
"description": "Success rate percentage"
},
"successful_launches": {
"type": "number"
}
}
},
"description": "Array of SpaceX rockets"
},
"_source": {
"type": "string"
},
"_fetched_at": {
"type": "string"
}
}
}
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.