get_next_launch
Pack: spacex · Endpoint: https://gateway.pipeworx.io/spacex/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_next_launch for the schema, then POST the same URL with its arguments for the data.
Get the next upcoming SpaceX launch. Returns launch name, scheduled date (UTC, may be TBD), mission details, rocket, and launch pad.
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_next_launch","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_next_launch', {});
Response shape
Always returns: name, date_utc, details, rocket
| Field | Type | Description |
|---|---|---|
name | string | Launch name |
date_utc | string | Launch date in UTC |
details | string | null | Launch details |
rocket | string | Rocket ID |
Full JSON Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Launch name"
},
"date_utc": {
"type": "string",
"description": "Launch date in UTC"
},
"details": {
"type": [
"string",
"null"
],
"description": "Launch details"
},
"rocket": {
"type": "string",
"description": "Rocket ID"
}
},
"required": [
"name",
"date_utc",
"details",
"rocket"
]
}
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.