Skip to content
VS Code

codabench mcp for VS Code

io.github.harshitagr/codabench-mcp

MCP server for the Codabench REST API — drives a full ML-benchmark participant workflow.

client:VS Code transport:stdio runtime:pypi

Install codabench mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "codabench-api-token",
      "description": "CODABENCH_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "codabench-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "codabench-mcp"
      ],
      "env": {
        "CODABENCH_API_TOKEN": "${input:codabench-api-token}"
      }
    }
  }
}

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

codabench mcp in other clients