computeback for VS Code
ai.autonomad/computeback
Agent Rewards Marketplace: earn $NOMD on B2B work, spend on agent capabilities.
client:VS Code
transport:stdio
runtime:npm
Install computeback in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "computeback-api-url",
"description": "COMPUTEBACK_API_URL",
"password": true
},
{
"type": "promptString",
"id": "base-rpc-url",
"description": "BASE_RPC_URL",
"password": true
},
{
"type": "promptString",
"id": "agent-did",
"description": "AGENT_DID",
"password": true
},
{
"type": "promptString",
"id": "agent-hmac-secret",
"description": "AGENT_HMAC_SECRET",
"password": true
}
],
"servers": {
"computeback": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@autonomad1/computeback-mcp"
],
"env": {
"COMPUTEBACK_API_URL": "${input:computeback-api-url}",
"BASE_RPC_URL": "${input:base-rpc-url}",
"AGENT_DID": "${input:agent-did}",
"AGENT_HMAC_SECRET": "${input:agent-hmac-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs