Skip to content
VS Code

mcp for VS Code

ai.cueapi/mcp

Schedule agent work and report write-once outcomes via CueAPI from any MCP host.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cueapi-api-key",
      "description": "CUEAPI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cueapi-base-url",
      "description": "CUEAPI_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cueapi/mcp"
      ],
      "env": {
        "CUEAPI_API_KEY": "${input:cueapi-api-key}",
        "CUEAPI_BASE_URL": "${input:cueapi-base-url}"
      }
    }
  }
}

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

mcp in other clients