AgentPay VN for VS Code
io.github.phuocdu/agentpay-vn
Let AI agents collect VietQR payments — generate a QR and auto-confirm settlement.
client:VS Code
transport:stdio
runtime:pypi
Install AgentPay VN in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentpay-api-key",
"description": "AGENTPAY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agentpay-base-url",
"description": "AGENTPAY_BASE_URL",
"password": true
}
],
"servers": {
"agentpay-vn": {
"type": "stdio",
"command": "uvx",
"args": [
"agentpay-vn"
],
"env": {
"AGENTPAY_API_KEY": "${input:agentpay-api-key}",
"AGENTPAY_BASE_URL": "${input:agentpay-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs