echorift mcp for VS Code
io.github.aaronvick/echorift-mcp
MCP server for EchoRift infrastructure primitives (BlockWire, CronSynth, Switchboard, Arbiter)
client:VS Code
transport:stdio
runtime:npm
Install echorift mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cronsynth-x402-session",
"description": "CRONSYNTH_X402_SESSION",
"password": true
},
{
"type": "promptString",
"id": "switchboard-agent-id",
"description": "SWITCHBOARD_AGENT_ID",
"password": true
},
{
"type": "promptString",
"id": "switchboard-private-key",
"description": "SWITCHBOARD_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "echorift-enable-treasury",
"description": "ECHORIFT_ENABLE_TREASURY",
"password": true
}
],
"servers": {
"echorift-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@echorift/mcp"
],
"env": {
"CRONSYNTH_X402_SESSION": "${input:cronsynth-x402-session}",
"SWITCHBOARD_AGENT_ID": "${input:switchboard-agent-id}",
"SWITCHBOARD_PRIVATE_KEY": "${input:switchboard-private-key}",
"ECHORIFT_ENABLE_TREASURY": "${input:echorift-enable-treasury}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs