arbiter for VS Code
io.github.godwin105/arbiter
Is this transaction safe to sign? Decodes what it really does and answers allow, warn or block.
client:VS Code
transport:stdio
runtime:npm
Install arbiter in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "arbiter-url",
"description": "ARBITER_URL",
"password": true
},
{
"type": "promptString",
"id": "arbiter-private-key",
"description": "ARBITER_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "arbiter-max-spend-usd",
"description": "ARBITER_MAX_SPEND_USD",
"password": true
},
{
"type": "promptString",
"id": "arbiter-max-price-per-call",
"description": "ARBITER_MAX_PRICE_PER_CALL",
"password": true
}
],
"servers": {
"arbiter": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@arbiterlabs/mcp"
],
"env": {
"ARBITER_URL": "${input:arbiter-url}",
"ARBITER_PRIVATE_KEY": "${input:arbiter-private-key}",
"ARBITER_MAX_SPEND_USD": "${input:arbiter-max-spend-usd}",
"ARBITER_MAX_PRICE_PER_CALL": "${input:arbiter-max-price-per-call}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs