Skip to content
VS Code

Account Pool for VS Code

io.github.ankitsxchdeva/account-pool-mcp

Exclusive, crash-safe leases on a pool of test accounts for parallel agent QA runs.

client:VS Code transport:stdio runtime:npm

Install Account Pool in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apm-accounts-file",
      "description": "APM_ACCOUNTS_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apm-db-path",
      "description": "APM_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apm-default-ttl-seconds",
      "description": "APM_DEFAULT_TTL_SECONDS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apm-lease-wait-ms",
      "description": "APM_LEASE_WAIT_MS",
      "password": true
    }
  ],
  "servers": {
    "account-pool-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "account-pool-mcp"
      ],
      "env": {
        "APM_ACCOUNTS_FILE": "${input:apm-accounts-file}",
        "APM_DB_PATH": "${input:apm-db-path}",
        "APM_DEFAULT_TTL_SECONDS": "${input:apm-default-ttl-seconds}",
        "APM_LEASE_WAIT_MS": "${input:apm-lease-wait-ms}"
      }
    }
  }
}

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

Account Pool in other clients