Obolus for VS Code
io.github.inviti8/obolus
Disposable Algorand wallet for AI agents. Pay x402 resources in USDC, no human provisioning.
client:VS Code
transport:stdio
runtime:pypi
Install Obolus in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "obolus-network",
"description": "OBOLUS_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "obolus-data-dir",
"description": "OBOLUS_DATA_DIR",
"password": true
}
],
"servers": {
"obolus": {
"type": "stdio",
"command": "uvx",
"args": [
"obolus"
],
"env": {
"OBOLUS_NETWORK": "${input:obolus-network}",
"OBOLUS_DATA_DIR": "${input:obolus-data-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs