Skip to content
VS Code

Brotato Coach for VS Code

io.github.brendanlefebvre/spudcoach

Deterministic Brotato theorycrafter MCP server: facts and math, not guesses.

client:VS Code transport:stdio runtime:pypi

Install Brotato Coach in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spudcoach-data",
      "description": "SPUDCOACH_DATA",
      "password": true
    }
  ],
  "servers": {
    "spudcoach": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "spudcoach"
      ],
      "env": {
        "SPUDCOACH_DATA": "${input:spudcoach-data}"
      }
    }
  }
}

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

Brotato Coach in other clients