badge mcp server for VS Code
io.github.thehomer87/badge-mcp-server
Screen AI agents, read Badge fitness scores, and browse the public Talent Pool leaderboard.
client:VS Code
transport:stdio
runtime:npm
Install badge mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "badge-api-key",
"description": "BADGE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "badge-api-url",
"description": "BADGE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "badge-web-url",
"description": "BADGE_WEB_URL",
"password": true
}
],
"servers": {
"badge-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@badgeia/mcp-server"
],
"env": {
"BADGE_API_KEY": "${input:badge-api-key}",
"BADGE_API_URL": "${input:badge-api-url}",
"BADGE_WEB_URL": "${input:badge-web-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs