Skip to content
VS Code

The Blue Alliance for VS Code

io.github.withinfocus/tba

The Blue Alliance MCP Server

client:VS Code transport:stdio runtime:npm

Install The Blue Alliance in VS Code

.vscode/mcp.json

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

The Blue Alliance in other clients