Wraps the SpaceX API v4 to give Claude access to rocket launch data, company info, and mission details without requiring authentication. The API is free and public, making this a zero-friction way to pull SpaceX information into conversations or workflows. Useful when you need real launch schedules, vehicle specs, or historical mission data on demand. Part of the Pipeworx gateway, so it's accessible via a single HTTPS endpoint rather than running locally. The source doesn't list specific tools, but the underlying SpaceX API covers launches, rockets, capsules, launchpads, and crew information.
SpaceX MCP — wraps SpaceX API v4 (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"spacex": {
"url": "https://gateway.pipeworx.io/spacex/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Spacex data" })
The gateway picks the right tool and fills the arguments automatically.
MIT