Skip to content
VS Code

SandBase Harness for VS Code

io.github.sandbaseai/sandbase-harness

Stdio MCP bridge for SandBase Harness agents, sessions, turns, artifacts, and cancellation.

client:VS Code transport:stdio runtime:oci

Install SandBase Harness in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "managed-agents-url",
      "description": "MANAGED_AGENTS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "managed-agents-api-key",
      "description": "MANAGED_AGENTS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sandbase-harness": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/sandbaseai/sandbase-harness-mcp:0.3.8"
      ],
      "env": {
        "MANAGED_AGENTS_URL": "${input:managed-agents-url}",
        "MANAGED_AGENTS_API_KEY": "${input:managed-agents-api-key}"
      }
    }
  }
}

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

SandBase Harness in other clients