Skip to content
VS Code

HumanOps for VS Code

io.github.thepianistdirector/humanops

MCP server for AI agents to dispatch real-world tasks to verified human operators

client:VS Code transport:stdio runtime:npm

Install HumanOps in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "humanops-api-key",
      "description": "HUMANOPS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "humanops-api-url",
      "description": "HUMANOPS_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "humanops-sandbox",
      "description": "HUMANOPS_SANDBOX",
      "password": true
    }
  ],
  "servers": {
    "humanops": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@humanops/mcp-server"
      ],
      "env": {
        "HUMANOPS_API_KEY": "${input:humanops-api-key}",
        "HUMANOPS_API_URL": "${input:humanops-api-url}",
        "HUMANOPS_SANDBOX": "${input:humanops-sandbox}"
      }
    }
  }
}

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

HumanOps in other clients