hyre mcp for VS Code
io.github.cryptoeights/hyre-mcp
17 DeFi + RWA tools — PumpFun, wallet PnL, Meteora LP, Robinhood Chain stocks — paid via x402.
client:VS Code
transport:stdio
runtime:npm
Install hyre mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "svm-private-key",
"description": "SVM_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "hyre-api-url",
"description": "HYRE_API_URL",
"password": true
}
],
"servers": {
"hyre-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hyre-mcp"
],
"env": {
"SVM_PRIVATE_KEY": "${input:svm-private-key}",
"HYRE_API_URL": "${input:hyre-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs