get_launch

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

Get full details for a specific launch by ID. Returns name, time, status, pad, rocket, mission, orbit info, video links, and mission patches.

Parameters

NameTypeRequiredDescription
idstringyesLaunch Library 2 launch UUID (e.g. “a6ce038e-4d89-4265-b47f-1c6ee5863f84”)

Example call

Arguments

{
  "id": "a6ce038e-4d89-4265-b47f-1c6ee5863f84"
}

curl

curl -X POST https://gateway.pipeworx.io/launches/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_launch","arguments":{"id":"a6ce038e-4d89-4265-b47f-1c6ee5863f84"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_launch', {
  "id": "a6ce038e-4d89-4265-b47f-1c6ee5863f84"
});

More examples

{
  "id": "f4b8e5c2-9a1f-4e3d-8c7b-2d9e6a5f3c1b"
}

Response shape

Always returns: id, name

FieldTypeDescription
idstringLaunch Library 2 launch UUID
namestringLaunch name
netstring | nullLaunch date/time (ISO 8601)
statusstring | nullLaunch status name
status_descriptionstring | nullDetailed status description
pad_namestring | nullLaunch pad name
locationstring | nullLaunch location/facility name
location_countrystring | nullLaunch location country code
rocket_namestring | nullRocket full name or configuration name
rocket_familystring | nullRocket family designation
mission_namestring | nullMission name
mission_descriptionstring | nullMission objectives and details
mission_typestring | nullMission type classification
orbitstring | nullTarget orbit name
orbit_abbrevstring | nullTarget orbit abbreviation
webcast_liveboolean | nullWhether webcast is available
imagestring | nullLaunch image URL
infographicstring | nullMission infographic URL
video_urlsarrayRelated video URLs
programsarrayAssociated space programs
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Launch Library 2 launch UUID"
    },
    "name": {
      "type": "string",
      "description": "Launch name"
    },
    "net": {
      "type": [
        "string",
        "null"
      ],
      "description": "Launch date/time (ISO 8601)"
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Launch status name"
    },
    "status_description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Detailed status description"
    },
    "pad_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Launch pad name"
    },
    "location": {
      "type": [
        "string",
        "null"
      ],
      "description": "Launch location/facility name"
    },
    "location_country": {
      "type": [
        "string",
        "null"
      ],
      "description": "Launch location country code"
    },
    "rocket_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Rocket full name or configuration name"
    },
    "rocket_family": {
      "type": [
        "string",
        "null"
      ],
      "description": "Rocket family designation"
    },
    "mission_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Mission name"
    },
    "mission_description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Mission objectives and details"
    },
    "mission_type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Mission type classification"
    },
    "orbit": {
      "type": [
        "string",
        "null"
      ],
      "description": "Target orbit name"
    },
    "orbit_abbrev": {
      "type": [
        "string",
        "null"
      ],
      "description": "Target orbit abbreviation"
    },
    "webcast_live": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether webcast is available"
    },
    "image": {
      "type": [
        "string",
        "null"
      ],
      "description": "Launch image URL"
    },
    "infographic": {
      "type": [
        "string",
        "null"
      ],
      "description": "Mission infographic URL"
    },
    "video_urls": {
      "type": "array",
      "description": "Related video URLs",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "Video URL"
          },
          "title": {
            "type": [
              "string",
              "null"
            ],
            "description": "Video title"
          }
        },
        "required": [
          "url"
        ]
      }
    },
    "programs": {
      "type": "array",
      "description": "Associated space programs",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Program name"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Program description"
          },
          "image_url": {
            "type": [
              "string",
              "null"
            ],
            "description": "Program logo/image URL"
          }
        }
      }
    }
  },
  "required": [
    "id",
    "name"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "launches": {
      "url": "https://gateway.pipeworx.io/launches/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026