Skip to content
VS Code

claudinho for VS Code

io.github.arturogarrido/claudinho

Live 2026 World Cup scores, fixtures & standings for your AI agent. No keys. Unofficial fan project.

client:VS Code transport:stdio runtime:npm

Install claudinho in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "claudinho-lang",
      "description": "CLAUDINHO_LANG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "claudinho-tz",
      "description": "CLAUDINHO_TZ",
      "password": true
    },
    {
      "type": "promptString",
      "id": "claudinho-flavor",
      "description": "CLAUDINHO_FLAVOR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "claudinho-markets",
      "description": "CLAUDINHO_MARKETS",
      "password": true
    }
  ],
  "servers": {
    "claudinho": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@claudinho/mcp"
      ],
      "env": {
        "CLAUDINHO_LANG": "${input:claudinho-lang}",
        "CLAUDINHO_TZ": "${input:claudinho-tz}",
        "CLAUDINHO_FLAVOR": "${input:claudinho-flavor}",
        "CLAUDINHO_MARKETS": "${input:claudinho-markets}"
      }
    }
  }
}

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

claudinho in other clients