Skip to content
VS Code

codecov for VS Code

io.github.egulatee/codecov

MCP server for querying Codecov coverage data with configurable URL support

client:VS Code transport:stdio runtime:npm

Install codecov in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "codecov-token",
      "description": "CODECOV_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "codecov-base-url",
      "description": "CODECOV_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "codecov": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-codecov"
      ],
      "env": {
        "CODECOV_TOKEN": "${input:codecov-token}",
        "CODECOV_BASE_URL": "${input:codecov-base-url}"
      }
    }
  }
}

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

codecov in other clients