Skip to content
VS Code

agdel mcp for VS Code

io.github.zeroth-settlement/agdel-mcp

MCP server for AGDEL. Agents can create, buy, deliver, reveal, and settle signals.

client:VS Code transport:stdio runtime:npm

Install agdel mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agdel-api-url",
      "description": "AGDEL_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agdel-signer-private-key",
      "description": "AGDEL_SIGNER_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "agdel-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agdel-mcp"
      ],
      "env": {
        "AGDEL_API_URL": "${input:agdel-api-url}",
        "AGDEL_SIGNER_PRIVATE_KEY": "${input:agdel-signer-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

agdel mcp in other clients