halowerk mcp for VS Code
io.github.halowerk/halowerk-mcp
134 paid APIs as MCP tools, billed per call in USDC on Base. No account, no login.
client:VS Code
transport:stdio
runtime:npm
Install halowerk mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "halowerk-private-key",
"description": "HALOWERK_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "halowerk-max-preis-usdc",
"description": "HALOWERK_MAX_PREIS_USDC",
"password": true
},
{
"type": "promptString",
"id": "halowerk-budget-usdc",
"description": "HALOWERK_BUDGET_USDC",
"password": true
},
{
"type": "promptString",
"id": "halowerk-modus",
"description": "HALOWERK_MODUS",
"password": true
},
{
"type": "promptString",
"id": "halowerk-trocken",
"description": "HALOWERK_TROCKEN",
"password": true
}
],
"servers": {
"halowerk-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"halowerk-mcp"
],
"env": {
"HALOWERK_PRIVATE_KEY": "${input:halowerk-private-key}",
"HALOWERK_MAX_PREIS_USDC": "${input:halowerk-max-preis-usdc}",
"HALOWERK_BUDGET_USDC": "${input:halowerk-budget-usdc}",
"HALOWERK_MODUS": "${input:halowerk-modus}",
"HALOWERK_TROCKEN": "${input:halowerk-trocken}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs