Skip to content
VS Code

human dispatch mcp for VS Code

io.github.zyntarasystems/human-dispatch-mcp

MCP server that dispatches physical-world tasks to humans through a unified API

client:VS Code transport:stdio runtime:npm

Install human dispatch mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rentahuman-api-key",
      "description": "RENTAHUMAN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mturk-access-key-id",
      "description": "MTURK_ACCESS_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mturk-secret-access-key",
      "description": "MTURK_SECRET_ACCESS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mturk-sandbox",
      "description": "MTURK_SANDBOX",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manual-webhook-url",
      "description": "MANUAL_WEBHOOK_URL",
      "password": true
    }
  ],
  "servers": {
    "human-dispatch-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "human-dispatch-mcp"
      ],
      "env": {
        "RENTAHUMAN_API_KEY": "${input:rentahuman-api-key}",
        "MTURK_ACCESS_KEY_ID": "${input:mturk-access-key-id}",
        "MTURK_SECRET_ACCESS_KEY": "${input:mturk-secret-access-key}",
        "MTURK_SANDBOX": "${input:mturk-sandbox}",
        "MANUAL_WEBHOOK_URL": "${input:manual-webhook-url}"
      }
    }
  }
}

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

human dispatch mcp in other clients