mcp server for VS Code
io.github.gatefareio/mcp-server
Marketplace of paid HTTP APIs. USDC micropayments via x402 on Base. Non-custodial.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallet-private-key",
"description": "WALLET_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "wallet-budget-usd",
"description": "WALLET_BUDGET_USD",
"password": true
},
{
"type": "promptString",
"id": "wallet-network",
"description": "WALLET_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "gatefare-pat",
"description": "GATEFARE_PAT",
"password": true
},
{
"type": "promptString",
"id": "gatefare-base-url",
"description": "GATEFARE_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@gatefare/mcp"
],
"env": {
"WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
"WALLET_BUDGET_USD": "${input:wallet-budget-usd}",
"WALLET_NETWORK": "${input:wallet-network}",
"GATEFARE_PAT": "${input:gatefare-pat}",
"GATEFARE_BASE_URL": "${input:gatefare-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