PluginBench
MCP Server
Active

Unity API Documentation MCP Server

io.github.Codeturion/unity-api-mcp

What is the Unity API Documentation MCP server?

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

How to install Unity API Documentation

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • UNITY_VERSION

    Unity version to serve: 2022, 2023, or 6 (default: auto-detect or 6)

  • UNITY_PROJECT_PATH

    Path to Unity project for auto-detecting version from ProjectSettings/ProjectVersion.txt

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "unity-api-mcp": {
      "command": "uvx",
      "args": [
        "unity-api-mcp"
      ],
      "env": {
        "UNITY_VERSION": "<YOUR_UNITY_VERSION>",
        "UNITY_PROJECT_PATH": "<YOUR_UNITY_PROJECT_PATH>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "unity-api-mcp": {
      "command": "uvx",
      "args": [
        "unity-api-mcp"
      ],
      "env": {
        "UNITY_VERSION": "<YOUR_UNITY_VERSION>",
        "UNITY_PROJECT_PATH": "<YOUR_UNITY_PROJECT_PATH>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "unity-api-mcp": {
      "command": "uvx",
      "args": [
        "unity-api-mcp"
      ],
      "env": {
        "UNITY_VERSION": "<YOUR_UNITY_VERSION>",
        "UNITY_PROJECT_PATH": "<YOUR_UNITY_PROJECT_PATH>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "unity-api-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "unity-api-mcp"
      ],
      "env": {
        "UNITY_VERSION": "<YOUR_UNITY_VERSION>",
        "UNITY_PROJECT_PATH": "<YOUR_UNITY_PROJECT_PATH>"
      }
    }
  }
}
Claude Code
claude mcp add unity-api-mcp --env UNITY_VERSION=<YOUR_UNITY_VERSION> --env UNITY_PROJECT_PATH=<YOUR_UNITY_PROJECT_PATH> -- uvx unity-api-mcp

Related MCP servers

Accurate UE5 C++ API docs for AI agents. Prevents hallucinated signatures and includes.

87
Python
View repository →

Indexes your codebase's public API and serves it via compact MCP tool responses.

21
Python
MIT
View repository →