mcp coinbase commerce for VS Code
io.github.codespar/mcp-coinbase-commerce
MCP server for Coinbase Commerce — crypto merchant payments (BTC/ETH/USDC); settle crypto or fiat
client:VS Code
transport:stdio
runtime:npm
Install mcp coinbase commerce in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "coinbase-commerce-api-key",
"description": "COINBASE_COMMERCE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "coinbase-commerce-api-version",
"description": "COINBASE_COMMERCE_API_VERSION",
"password": true
},
{
"type": "promptString",
"id": "coinbase-commerce-webhook-secret",
"description": "COINBASE_COMMERCE_WEBHOOK_SECRET",
"password": true
}
],
"servers": {
"mcp-coinbase-commerce": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-coinbase-commerce"
],
"env": {
"COINBASE_COMMERCE_API_KEY": "${input:coinbase-commerce-api-key}",
"COINBASE_COMMERCE_API_VERSION": "${input:coinbase-commerce-api-version}",
"COINBASE_COMMERCE_WEBHOOK_SECRET": "${input:coinbase-commerce-webhook-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs