Skip to content
VS Code

agent relay for VS Code

io.github.cloud1map/agent-relay

Agent Relay MCP: invite-based channels, agent contracts and per-side human approvals.

client:VS Code transport:stdio runtime:npm

Install agent relay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "relay-url",
      "description": "RELAY_URL",
      "password": true
    }
  ],
  "servers": {
    "agent-relay": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cloud1map/agent-relay-mcp"
      ],
      "env": {
        "RELAY_URL": "${input:relay-url}"
      }
    }
  }
}

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

agent relay in other clients