pop pay for VS Code
io.github.100xpercent/pop-pay
Runtime security for AI agent commerce. CLI + MCP server blocks hallucinated purchases.
client:VS Code
transport:stdio
runtime:npm
Install pop pay in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pop-cdp-url",
"description": "POP_CDP_URL",
"password": true
},
{
"type": "promptString",
"id": "pop-allowed-categories",
"description": "POP_ALLOWED_CATEGORIES",
"password": true
},
{
"type": "promptString",
"id": "pop-max-per-tx",
"description": "POP_MAX_PER_TX",
"password": true
},
{
"type": "promptString",
"id": "pop-max-daily",
"description": "POP_MAX_DAILY",
"password": true
},
{
"type": "promptString",
"id": "pop-guardrail-engine",
"description": "POP_GUARDRAIL_ENGINE",
"password": true
}
],
"servers": {
"pop-pay": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"pop-pay"
],
"env": {
"POP_CDP_URL": "${input:pop-cdp-url}",
"POP_ALLOWED_CATEGORIES": "${input:pop-allowed-categories}",
"POP_MAX_PER_TX": "${input:pop-max-per-tx}",
"POP_MAX_DAILY": "${input:pop-max-daily}",
"POP_GUARDRAIL_ENGINE": "${input:pop-guardrail-engine}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs