Skip to content
VS Code

stelaspace mcp for VS Code

io.github.stelaspace/stelaspace-mcp

Publish AI-generated HTML (dashboards, reports, docs) to permanent, sandboxed, shareable links.

client:VS Code transport:stdio runtime:npm

Install stelaspace mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stelaspace-api-key",
      "description": "STELASPACE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "stelaspace-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stelaspace-mcp"
      ],
      "env": {
        "STELASPACE_API_KEY": "${input:stelaspace-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

stelaspace mcp in other clients