get_rockets

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

List all SpaceX rockets. Returns name, type, active status, stages, boosters, cost per launch, success rate, first flight date, and description.

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

Always returns: rockets

FieldTypeDescription
rocketsarrayArray of SpaceX rockets
Full JSON Schema
{
  "type": "object",
  "properties": {
    "rockets": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Rocket name"
          },
          "type": {
            "type": "string",
            "description": "Rocket type"
          },
          "active": {
            "type": "boolean",
            "description": "Whether rocket is currently active"
          },
          "stages": {
            "type": "number",
            "description": "Number of stages"
          },
          "boosters": {
            "type": "number",
            "description": "Number of boosters"
          },
          "cost_per_launch": {
            "type": "number",
            "description": "Cost per launch in USD"
          },
          "success_rate_pct": {
            "type": "number",
            "description": "Success rate percentage"
          },
          "first_flight": {
            "type": "string",
            "description": "First flight date"
          },
          "description": {
            "type": "string",
            "description": "Rocket description"
          }
        },
        "required": [
          "name",
          "type",
          "active",
          "stages",
          "boosters",
          "cost_per_launch",
          "success_rate_pct",
          "first_flight",
          "description"
        ]
      },
      "description": "Array of SpaceX rockets"
    }
  },
  "required": [
    "rockets"
  ]
}

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 May 9, 2026