buyforme mcp for VS Code
io.github.stevemilton/buyforme-mcp
BuyForMe: pay any x402 URL (USD or EUR) with ArisPay delegated custody. Alias of payagent-mcp.
client:VS Code
transport:stdio
runtime:npm
Install buyforme mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "arispay-api-key",
"description": "ARISPAY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "payagent-private-key",
"description": "PAYAGENT_PRIVATE_KEY",
"password": true
}
],
"servers": {
"buyforme-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"buyforme-mcp"
],
"env": {
"ARISPAY_API_KEY": "${input:arispay-api-key}",
"PAYAGENT_PRIVATE_KEY": "${input:payagent-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