agenttoll for VS Code
io.github.tevfikefeaydin/agenttoll
21 paid data tools plus free quote/budget inspection, with bounded USDC payments on Base.
client:VS Code
transport:stdio
runtime:npm
Install agenttoll in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agent-private-key",
"description": "AGENT_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "agenttoll-url",
"description": "AGENTTOLL_URL",
"password": true
},
{
"type": "promptString",
"id": "agenttoll-network",
"description": "AGENTTOLL_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "agenttoll-recipient",
"description": "AGENTTOLL_RECIPIENT",
"password": true
},
{
"type": "promptString",
"id": "agenttoll-budget-usdc",
"description": "AGENTTOLL_BUDGET_USDC",
"password": true
},
{
"type": "promptString",
"id": "agenttoll-max-per-call-usdc",
"description": "AGENTTOLL_MAX_PER_CALL_USDC",
"password": true
},
{
"type": "promptString",
"id": "agenttoll-timeout-ms",
"description": "AGENTTOLL_TIMEOUT_MS",
"password": true
}
],
"servers": {
"agenttoll": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"agenttoll-mcp"
],
"env": {
"AGENT_PRIVATE_KEY": "${input:agent-private-key}",
"AGENTTOLL_URL": "${input:agenttoll-url}",
"AGENTTOLL_NETWORK": "${input:agenttoll-network}",
"AGENTTOLL_RECIPIENT": "${input:agenttoll-recipient}",
"AGENTTOLL_BUDGET_USDC": "${input:agenttoll-budget-usdc}",
"AGENTTOLL_MAX_PER_CALL_USDC": "${input:agenttoll-max-per-call-usdc}",
"AGENTTOLL_TIMEOUT_MS": "${input:agenttoll-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs