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_VERSIONUnity version to serve: 2022, 2023, or 6 (default: auto-detect or 6)
UNITY_PROJECT_PATHPath 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-mcpRelated MCP servers
Accurate UE5 C++ API docs for AI agents. Prevents hallucinated signatures and includes.
87
View repository →Python
io.github.Codeturion/codesurface
Maintained
Indexes your codebase's public API and serves it via compact MCP tool responses.
21
View repository →Python
MIT