get_rockets

Pack: spacex · Endpoint: https://gateway.pipeworx.io/spacex/mcp

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

FieldTypeDescription
rocketsarrayArray of SpaceX rockets
_sourcestring
_fetched_atstring
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"
          },
          "failed_launches": {
            "type": "number"
          },
          "launch_cost_usd": {
            "type": "number"
          },
          "success_rate_pct": {
            "type": "number",
            "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.

Regenerated from source · build July 21, 2026