Skip to content
VS Code

mcp server for VS Code

io.github.tago-io/mcp-server

Model Context Protocol server for TagoIO data and analytics

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tagoio-token",
      "description": "TAGOIO_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tagoio-api",
      "description": "TAGOIO_API",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tago-io/mcp-server"
      ],
      "env": {
        "TAGOIO_TOKEN": "${input:tagoio-token}",
        "TAGOIO_API": "${input:tagoio-api}"
      }
    }
  }
}

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

mcp server in other clients