Gatewards for VS Code
io.github.rtahabas/gatewards
Drop-in spend governance + cross-agent dedup proxy for AI agent fleets, with x402 settlement.
client:VS Code
transport:stdio
runtime:npm
Install Gatewards in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gatewards-api-key",
"description": "GATEWARDS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gatewards-gateway-url",
"description": "GATEWARDS_GATEWAY_URL",
"password": true
}
],
"servers": {
"gatewards": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@gatewards/mcp-server"
],
"env": {
"GATEWARDS_API_KEY": "${input:gatewards-api-key}",
"GATEWARDS_GATEWAY_URL": "${input:gatewards-gateway-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs