Skip to content
VS Code

defi orchestrator for VS Code

io.github.lordbasilaiassistant-sudo/defi-orchestrator

Multi-step DeFi strategy orchestration — swaps, lending, yields on Base/EVM

client:VS Code transport:stdio runtime:npm

Install defi orchestrator in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rpc-url",
      "description": "RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "thryx-api-key",
      "description": "THRYX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deployer-private-key",
      "description": "DEPLOYER_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "defi-orchestrator": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thryx/defi-orchestrator-mcp-server"
      ],
      "env": {
        "RPC_URL": "${input:rpc-url}",
        "THRYX_API_KEY": "${input:thryx-api-key}",
        "DEPLOYER_PRIVATE_KEY": "${input:deployer-private-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

defi orchestrator in other clients