agentic-pay for VS Code
io.github.shieldcubed/agentic-pay
Non-custodial payment engine for AI agents — BTC, ETH, USDT, USDC, XRP, XMR, ZEC.
client:VS Code
transport:stdio
runtime:npm
Install agentic-pay in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentic-pay-agent-id",
"description": "AGENTIC_PAY_AGENT_ID",
"password": true
},
{
"type": "promptString",
"id": "agentic-pay-config",
"description": "AGENTIC_PAY_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "btc-wif",
"description": "BTC_WIF",
"password": true
},
{
"type": "promptString",
"id": "eth-rpc-url",
"description": "ETH_RPC_URL",
"password": true
},
{
"type": "promptString",
"id": "eth-private-key",
"description": "ETH_PRIVATE_KEY",
"password": true
}
],
"servers": {
"agentic-pay": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@shieldcubed/agentic-pay"
],
"env": {
"AGENTIC_PAY_AGENT_ID": "${input:agentic-pay-agent-id}",
"AGENTIC_PAY_CONFIG": "${input:agentic-pay-config}",
"BTC_WIF": "${input:btc-wif}",
"ETH_RPC_URL": "${input:eth-rpc-url}",
"ETH_PRIVATE_KEY": "${input:eth-private-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs