boo mpp mcp for VS Code
io.github.lucle87/boo-mpp-mcp
Pay-per-call crypto data for AI agents. USDC.e on Tempo via MPP. No API key.
client:VS Code
transport:stdio
runtime:npm
Install boo mpp mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallet-private-key",
"description": "WALLET_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "max-usd-per-call",
"description": "MAX_USD_PER_CALL",
"password": true
},
{
"type": "promptString",
"id": "max-usd-total",
"description": "MAX_USD_TOTAL",
"password": true
}
],
"servers": {
"boo-mpp-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"boo-mpp-mcp"
],
"env": {
"WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
"MAX_USD_PER_CALL": "${input:max-usd-per-call}",
"MAX_USD_TOTAL": "${input:max-usd-total}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs