mcp circle for VS Code
io.github.codespar/mcp-circle
MCP server for Circle — USDC payments, wallets, payouts, transfers
client:VS Code
transport:stdio
runtime:npm
Install mcp circle in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "circle-api-key",
"description": "CIRCLE_API_KEY",
"password": true
}
],
"servers": {
"mcp-circle": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-circle"
],
"env": {
"CIRCLE_API_KEY": "${input:circle-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