Skip to content
VS Code

Hera Agent Unity for VS Code

io.github.notnull92/hera-agent-unity

Control and verify a live Unity Editor through a local, low-token MCP server.

client:VS Code transport:stdio runtime:npm

Install Hera Agent Unity in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hera-mcp-enabled",
      "description": "HERA_MCP_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "hera-agent-unity": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hera-agent-unity"
      ],
      "env": {
        "HERA_MCP_ENABLED": "${input:hera-mcp-enabled}"
      }
    }
  }
}

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

Hera Agent Unity in other clients