Obol for VS Code
io.github.superbigroach/obol
Find, pay for & call APIs in USDC from AI agents - gasless, sub-cent, 0% commission.
client:VS Code
transport:stdio
runtime:npm
Install Obol in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "obol-api-key",
"description": "OBOL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "obol-agent-key",
"description": "OBOL_AGENT_KEY",
"password": true
}
],
"servers": {
"obol": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@superbigroach/obol-mcp"
],
"env": {
"OBOL_API_KEY": "${input:obol-api-key}",
"OBOL_AGENT_KEY": "${input:obol-agent-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs