badge for VS Code
io.github.payclaw/badge
Agents are not bots. Prove it. MCP-native identity declaration for authorized agents.
client:VS Code
transport:stdio
runtime:npm
Install badge in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "payclaw-api-key",
"description": "PAYCLAW_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "payclaw-api-url",
"description": "PAYCLAW_API_URL",
"password": true
}
],
"servers": {
"badge": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@payclaw/badge"
],
"env": {
"PAYCLAW_API_KEY": "${input:payclaw-api-key}",
"PAYCLAW_API_URL": "${input:payclaw-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs