coinrailz for VS Code
io.github.tdnupe3/coinrailz
41 crypto micropayment services via x402 protocol
client:VS Code
transport:stdio
runtime:pypi
Install coinrailz in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "coinrailz-api-key",
"description": "COINRAILZ_API_KEY",
"password": true
}
],
"servers": {
"coinrailz": {
"type": "stdio",
"command": "uvx",
"args": [
"coinrailz-mcp"
],
"env": {
"COINRAILZ_API_KEY": "${input:coinrailz-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs