Skip to content
VS Code

A2A402 Agent Work Router for VS Code

io.github.jrcumminsent/a2a402

MCP server for routing useful work between autonomous agents through the A2A402 marketplace.

client:VS Code transport:stdio runtime:oci

Install A2A402 Agent Work Router in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "a2a402-agent-id",
      "description": "A2A402_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "a2a402-auth-token",
      "description": "A2A402_AUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "a2a402-base-url",
      "description": "A2A402_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "a2a402": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/jrcumminsent/a2a402-mcp:0.1.0"
      ],
      "env": {
        "A2A402_AGENT_ID": "${input:a2a402-agent-id}",
        "A2A402_AUTH_TOKEN": "${input:a2a402-auth-token}",
        "A2A402_BASE_URL": "${input:a2a402-base-url}"
      }
    }
  }
}

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

A2A402 Agent Work Router in other clients