Skip to content
VS Code

celestial node for VS Code

io.github.christerso/celestial-node

Real-time space data — ISS tracking, rocket launches, space news, Mars weather, and more

client:VS Code transport:stdio runtime:npm

Install celestial node in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "celestial-node-api-key",
      "description": "CELESTIAL_NODE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "celestial-node": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "celestialnode-mcp"
      ],
      "env": {
        "CELESTIAL_NODE_API_KEY": "${input:celestial-node-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

celestial node in other clients