Skip to content
VS Code

AI2Human for VS Code

io.github.richard7463/ai2human-mcp

Dispatch human-execution tasks with proof verification, local checks, and compliance reviews.

client:VS Code transport:stdio runtime:pypi

Install AI2Human in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ai2human-api-key",
      "description": "AI2HUMAN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ai2human-agent-key",
      "description": "AI2HUMAN_AGENT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ai2human-base-url",
      "description": "AI2HUMAN_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "ai2human-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ai2human-mcp"
      ],
      "env": {
        "AI2HUMAN_API_KEY": "${input:ai2human-api-key}",
        "AI2HUMAN_AGENT_KEY": "${input:ai2human-agent-key}",
        "AI2HUMAN_BASE_URL": "${input:ai2human-base-url}"
      }
    }
  }
}

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

AI2Human in other clients