Skip to content
VS Code

trencher agent for VS Code

io.github.zero520-dot/trencher-agent

First autonomous Solana trading agent on MCP. Live signals and consciousness feed.

client:VS Code transport:stdio runtime:npm

Install trencher agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "trencher-api-url",
      "description": "TRENCHER_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "trencher-api-key",
      "description": "TRENCHER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "trencher-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "autonomustrench-mcp-server"
      ],
      "env": {
        "TRENCHER_API_URL": "${input:trencher-api-url}",
        "TRENCHER_API_KEY": "${input:trencher-api-key}"
      }
    }
  }
}

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

trencher agent in other clients