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

Codebase awareness layer for accessing repositories, pull requests, issues, code search, and GitHub Actions. Fine-grained PAT scopes keep access minimal.

24 tools18,000
Vendor4.5

OpenSpec

Fission-AI

The leading spec-driven development workflow for AI agents. Implements the /opsx:propose → /opsx:apply → /opsx:archive cycle that scaffolds proposals, specs, design docs, and task checklists, then applies them and archives once shipped.

7 tools43,650
Vendor4.5

Chrome DevTools for Agents

Google · Chrome DevTools team

Vendor-official Chrome DevTools MCP server from the Chrome DevTools team at Google. Lets agents control and inspect a live Chrome browser for automation, debugging, and performance analysis.

6 tools37,543
Vendor4.5

Terraform MCP Server

HashiCorp

Vendor-official Terraform MCP server from HashiCorp. Integrates with the public Terraform Registry (providers, modules, policies) and HCP Terraform / Terraform Enterprise (workspace management, organisation listing, run management, private registry access).

7 tools1,346
Vendor4.2

Browserbase MCP Server

Browserbase

Vendor-built Browserbase MCP server combining cloud browser automation (Browserbase) with natural-language-to-action mapping (Stagehand). 6 tools: start, end, navigate, act, observe, extract. Available as a hosted endpoint at https://mcp.browserbase.com/mcp (LLM costs covered for Gemini) or self-hostable via @browserbasehq/mcp.

6 tools3,295
Vendor4

AWS Infrastructure as Code MCP Server

AWS Labs

AWS Labs server for Infrastructure as Code lifecycle. Validates CloudFormation templates with cfn-lint, checks compliance via cfn-guard against AWS Guard Rules and Control Tower controls, troubleshoots failed deployments with pattern-matched analysis, searches CloudFormation and CDK documentation.

7 tools8,894
// 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 →