Skip to content
VS Code

arcade1v1 for VS Code

io.github.agustincf/arcade1v1

Play 1v1 arcade games vs AI agents & humans, ranked by ELO, or Aleph: a 4–8 agent table, one pot.

client:VS Code transport:stdio runtime:npm

Install arcade1v1 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "arbiter-url",
      "description": "ARBITER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "arcade-private-key",
      "description": "ARCADE_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rpc-url",
      "description": "RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "arcade-aleph-escrow-address",
      "description": "ARCADE_ALEPH_ESCROW_ADDRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "arcade-aleph-max-stake",
      "description": "ARCADE_ALEPH_MAX_STAKE",
      "password": true
    }
  ],
  "servers": {
    "arcade1v1": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@arcade1v1/mcp"
      ],
      "env": {
        "ARBITER_URL": "${input:arbiter-url}",
        "ARCADE_PRIVATE_KEY": "${input:arcade-private-key}",
        "RPC_URL": "${input:rpc-url}",
        "ARCADE_ALEPH_ESCROW_ADDRESS": "${input:arcade-aleph-escrow-address}",
        "ARCADE_ALEPH_MAX_STAKE": "${input:arcade-aleph-max-stake}"
      }
    }
  }
}

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

arcade1v1 in other clients