rubric mcp for VS Code
io.github.0xsims/rubric-mcp
Attested evidence tools for AI agents: sanctions screening, agent/wallet records, paid via x402.
client:VS Code
transport:stdio
runtime:npm
Install rubric mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rubric-wallet-key",
"description": "RUBRIC_WALLET_KEY",
"password": true
},
{
"type": "promptString",
"id": "rubric-x402-daily-limit",
"description": "RUBRIC_X402_DAILY_LIMIT",
"password": true
},
{
"type": "promptString",
"id": "rubric-api-key",
"description": "RUBRIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "rubric-mcp-modules",
"description": "RUBRIC_MCP_MODULES",
"password": true
}
],
"servers": {
"rubric-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rubric-protocol/mcp-server"
],
"env": {
"RUBRIC_WALLET_KEY": "${input:rubric-wallet-key}",
"RUBRIC_X402_DAILY_LIMIT": "${input:rubric-x402-daily-limit}",
"RUBRIC_API_KEY": "${input:rubric-api-key}",
"RUBRIC_MCP_MODULES": "${input:rubric-mcp-modules}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs