AUTOMATIONSWITCH
CommunityDev Tools

MCP Unity Editor

by CoderGamester

Community-built Unity Editor MCP bridge. Combines a Unity package (runs inside the editor) with a Node.js MCP server (translates between MCP clients and the editor) to give agents access to scene, GameObject, and component operations.

1,626·7 tools·Released MAR 2025·MIT
See README for two-part install: Unity package + Node.js bridge
Share:

MCP Unity Editor is the community-built bridge between AI coding agents and the Unity game engine. The architecture is two parts: a Unity package that runs inside the editor exposing scene and component operations, and a Node.js MCP server that translates between MCP clients and the Unity package over a socket. The combination lets agents like Cursor, Windsurf, Claude Code, Copilot, and Google Antigravity execute editor operations: select GameObjects, update components, run tests, install packages, send console logs. The standout feature is the IDE integration that automatically adds Unity's `Library/PackedCache` to the workspace, giving the agent better autocomplete and type information for Unity packages. The community-maintained nature is the biggest caveat: this is a single-developer project at the time of review, with active development but no formal Unity Technologies endorsement. For Unity-focused teams using AI agents, this is the best available bridge; for teams considering Unity MCP integration as a strategic dependency, scope expectations against the maintainer's bus factor.

Reviewed by M. Nouriel · APR 2026

INSTALL THIS SERVER

{ "mcpServers": { "mcp-unity": { "command": "node", "args": [ "/path/to/mcp-unity/Server~/build/index.js" ], "env": { "UNITY_PORT": "8090" } } } }
PrereqTwo-part install. (1) In Unity: Install the MCP Unity package via Package Manager (Add package from git URL: https://github.com/CoderGamester/mcp-unity.git). (2) On host: Clone the repo, run `npm install && npm run build` in the Server~ directory. Update the path in args to your local clone. Path: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS).
{ "mcpServers": { "mcp-unity": { "command": "node", "args": [ "/path/to/mcp-unity/Server~/build/index.js" ], "env": { "UNITY_PORT": "8090" } } } }
{ "mcpServers": { "mcp-unity": { "command": "node", "args": [ "/path/to/mcp-unity/Server~/build/index.js" ], "env": { "UNITY_PORT": "8090" } } } }
{ "mcpServers": { "mcp-unity": { "command": "node", "args": [ "/path/to/mcp-unity/Server~/build/index.js" ], "env": { "UNITY_PORT": "8090" } } } }
{ "mcpServers": { "mcp-unity": { "command": "node", "args": [ "/path/to/mcp-unity/Server~/build/index.js" ], "env": { "UNITY_PORT": "8090" } } } }

7 TOOLS AVAILABLE

execute_menu_item
Execute Unity menu items (functions tagged with the MenuItem attribute)
Admin
select_gameobject
Select game objects in the Unity hierarchy by path or instance ID
Write
update_gameobject
Update a GameObject's core properties; creates the GameObject if it does not exist
Write
update_component
Update component fields on a GameObject; adds the component if missing
Write
add_package
Install new packages in the Unity Package Manager
Admin
run_tests
Run tests using the Unity Test Runner
Read

OUR ASSESSMENT

Strengths
  • Two-part architecture (Unity package + Node.js MCP server) provides clean separation between editor-side execution and MCP protocol handling.
  • IDE integration adds Unity `Library/PackedCache` to VS Code-like workspaces for better Unity package autocomplete and type information.
  • Tool coverage spans GameObject manipulation, component updates, package installation, and Unity Test Runner integration.
  • Multi-language README (English, Chinese, Japanese) signals international community adoption.
Weaknesses
  • Single-developer maintained; bus factor risk is real for teams making this a strategic dependency.
  • Community project; Unity Technologies endorsement is absent, and integration with future Unity versions depends on the maintainer's release cadence.
  • Two-part install (Unity package + Node.js) adds friction compared to single-binary MCP servers.
Security Notes

The Unity package runs inside the Unity Editor with the same permissions as the editor process. Operations like `execute_menu_item` execute Unity menu commands directly, which means destructive operations (delete scene, clear console) are within scope. The Node.js server bridges via a local socket; ensure firewall rules restrict the port to localhost only. Project-level git hygiene matters: the agent can modify scenes, components, and project settings, so commit cadence and human review checkpoints are the safety net.

Best For

Unity developers using AI coding agents (Cursor, Windsurf, Claude Code, Copilot, Google Antigravity) who want the agent to drive editor operations alongside C# code.

TECHNICAL DETAILS

Language
typescript
Transport
stdio
Clients
Claude DesktopClaude CodeCursorVS CodeWindsurf
License
MIT
GitHub
Last Release
1.3.0APR 26, 2026
First Released
MAR 8, 2025

ADOPTION METRICS

// GitHub Stars
1,626

// Reading this1.6k stars from the Unity developer community signal real workflow adoption. The community-maintained status places long-term continuity on a single maintainer.

// Popularity Rank
#13
Globally · #5 in Dev Tools

// Reading thisTop-ranked Unity MCP bridge in the directory. The IDE integration with Library/PackedCache is the architectural differentiator that other Unity MCPs miss.

SOURCES & VERIFICATION

We don't take any single directory's word for it. Before scoring, we cross-reference 5 public MCP sources, install the server ourselves against the clients we cover, and record when we last re-verified.

01
Discovered
Manual submission
First indexed APR 28, 2026
02
Cross-referenced
5 directories
PulseMCP, Official MCP Registry, Awesome MCP Servers, Smithery, MCPMarket
03
Verified against
Cursor, Windsurf, Claude Code, Codex CLI, GitHub Copilot, Google Antigravity
Installed and tested across clients
04
Last re-checked
APR 28, 2026
Weekly re-verification
// How other directories see it

The same server, 5 different lenses. We reconcile these signals into our editorial score, which is why our number sometimes diverges from a directory-aggregate star count.

SourceTheir ratingTheir star countTheir downloadsLast synced
AutomationSwitch This page4editorial1,626APR 28, 2026
PulseMCP— unratedunavailableunavailableAPR 28, 2026
Official MCP Registry— unratedunavailableunavailableAPR 28, 2026
Awesome MCP Servers— unratedunavailableunavailableAPR 28, 2026
Smithery— unratedunavailableunavailableAPR 28, 2026
MCPMarket— unratedunavailableunavailableAPR 28, 2026

// Counts are directory-reported; we don't adjust them. Discrepancies usually come from different snapshot times or star-caching.

OTHER DEV TOOLS MCP SERVERS

Official5

GitHub

GitHub

Official GitHub MCP server. 29,469 stars, MIT, 33 commits on main in the last 30 days. Repo, issue, PR, action, and code search tools backed by the GitHub REST + GraphQL APIs.

24 tools29,469
Official4.7

Playwright

Microsoft

Official Microsoft Playwright MCP server. Browser automation tools (navigate, click, fill, screenshot, evaluate JS, network capture) backed by Playwright. 31,942 stars, 35 commits/30d, Apache-2.0.

11 tools31,942
Official4.7

MCP Registry

Model Context Protocol

The community-driven registry service for MCP servers, maintained by the Model Context Protocol project. Discover, list, and validate MCP servers from inside agents. 6,781 GitHub stars and 65 commits on main in the last 30 days.

5 tools6,781
Official4.6

MCP Inspector

Model Context Protocol

The official MCP debugging and testing tool maintained by the Model Context Protocol project. Visual inspector for MCP servers: invoke tools, inspect transports, validate protocol behaviour during development. 9,647 GitHub stars and 32 commits on main in the last 30 days.

6 tools9,647
Official4.6

XcodeBuild MCP

Sentry (getsentry org)

MCP server and CLI for agent use of Xcode build tools. Build, test, run, and inspect iOS, macOS, watchOS, and visionOS projects from inside agents. 5,429 GitHub stars and 95 commits on main in the last 30 days. Maintained by Sentry.

7 tools5,429
Community4.6

GitLab MCP

zereight

GitLab MCP with 60+ tools covering merge requests, repositories, issues, branches, commits, files, discussions, draft notes, approvals, pipelines, and OAuth multi-user support. 54 commits on main in the last 30 days.

9 tools1,449
// Get in touch

DISCUSS YOUR
MCP REQUIREMENTS.

Evaluating a server, scoping an internal deployment, or working out whether MCP is the right fit at all. Start the conversation and we will point you at the right piece of the ecosystem.

Discuss Your MCP Requirements →