colber mcp for VS Code
io.github.obi49/colber-mcp
Trust + coordination infrastructure for the agent economy. 27 tools across 6 Colber modules.
client:VS Code
transport:stdio
runtime:npm
Install colber mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "colber-base-urls",
"description": "COLBER_BASE_URLS",
"password": true
},
{
"type": "promptString",
"id": "colber-auth-token",
"description": "COLBER_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "colber-log-level",
"description": "COLBER_LOG_LEVEL",
"password": true
}
],
"servers": {
"colber-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@colber/mcp"
],
"env": {
"COLBER_BASE_URLS": "${input:colber-base-urls}",
"COLBER_AUTH_TOKEN": "${input:colber-auth-token}",
"COLBER_LOG_LEVEL": "${input:colber-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs