Skills pipeworx-spacex

SpaceX

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-spacex" ~/.claude/skills/openclaw-skills-pipeworx-spacex && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-spacex" ~/.openclaw/skills/openclaw-skills-pipeworx-spacex && rm -rf "$T"
manifest: skills/brucegutman/pipeworx-spacex/SKILL.md
source content

SpaceX

Real-time and historical data from SpaceX launches, rockets, crew, and the Starlink constellation.

What's available

  • get_latest_launch -- The most recent SpaceX launch with success status, details, and media links (webcast, article, Wikipedia)
  • get_next_launch -- Next upcoming launch with date and details
  • get_past_launches -- Recent launches in reverse chronological order (configurable count)
  • get_rockets -- All SpaceX rockets: Falcon 1, Falcon 9, Falcon Heavy, Starship. Includes cost per launch, success rate, and first flight date.
  • get_crew -- SpaceX crew members with name, agency, status, and photo
  • get_starlink -- Starlink satellite data sorted by most recent launch, including object name, launch date, and decay date

Try it

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_latest_launch","arguments":{}}}'

Configuration

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