Rocket Launches
liveSpaceScienceUpcoming and past rocket launches, full mission details, and searchable launch history from Launch Library 2
Tools
get_upcoming_launchesGet upcoming rocket launches. Returns name, net launch time, status, launch pad, rocket name, and mission description.
limitoptnumberNumber of launches to return (default 10)Try it
get_past_launchesGet past rocket launches. Returns name, net launch time, status, launch pad, rocket name, and mission description.
limitoptnumberNumber of launches to return (default 10)Try it
get_launchrequired: idGet full details for a specific launch by its Launch Library 2 ID. Returns name, net time, status, pad, rocket, mission, orbit info, and video URLs.
idreqstringLaunch Library 2 launch UUID (e.g. "a6ce038e-4d89-4265-b47f-1c6ee5863f84")Try it
search_launchesrequired: querySearch launches by keyword (rocket name, mission name, agency, etc). Returns matching launches with name, net launch time, status, pad, rocket, and mission description.
queryreqstringSearch keyword (e.g. "Falcon 9", "Artemis", "ISS")limitoptnumberNumber of results to return (default 10)Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/launches/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/launches/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_upcoming_launches","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_upcoming_launches", {});// Or ask in plain English:
const answer = await px.ask("upcoming and past rocket launches, full mission details, and searchable launch history from launch library 2");