Skip to content
VS Code

Unity API Documentation for VS Code

io.github.codeturion/unity-api-mcp

Accurate Unity API docs (2022/2023/6) for AI agents. Prevents hallucinated signatures.

client:VS Code transport:stdio runtime:pypi

Install Unity API Documentation in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "unity-version",
      "description": "UNITY_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unity-project-path",
      "description": "UNITY_PROJECT_PATH",
      "password": true
    }
  ],
  "servers": {
    "unity-api-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "unity-api-mcp"
      ],
      "env": {
        "UNITY_VERSION": "${input:unity-version}",
        "UNITY_PROJECT_PATH": "${input:unity-project-path}"
      }
    }
  }
}

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

Unity API Documentation in other clients