Esta página se muestra en inglés. Una traducción al español está en curso.
MCP ConfigsMay 12, 2026·2 min de lectura

Unity MCP — Control Unity Editor from Agents

Unity MCP bridges MCP clients to your Unity Editor so assistants can manage scenes, assets, scripts, and builds via tools instead of manual clicking.

Listo para agents

Este activo puede ser leído e instalado directamente por agents

TokRepo expone un comando CLI universal, contrato de instalación, metadata JSON, plan según adaptador y contenido raw para que los agents evalúen compatibilidad, riesgo y próximos pasos.

Stage only · 17/100Stage only
Superficie agent
Cualquier agent MCP/CLI
Tipo
Mcp Config
Instalación
Stage only
Confianza
Confianza: Established
Entrada
Asset
Comando CLI universal
npx tokrepo install 019d30ca-e0c5-4eb2-a0f6-1d3ff9711351
Introducción

Unity MCP bridges MCP clients to your Unity Editor so assistants can manage scenes, assets, scripts, and builds via tools instead of manual clicking.

  • Best for: Unity teams who want LLMs to automate editor workflows (scene edits, package management, build pipelines)
  • Works with: Unity 2021.3+ editor, Python 3.10+, MCP clients (Claude Desktop/Code, Cursor, VS Code, etc.)
  • Setup time: 20 minutes

Practical Notes

  • Release notes in README show versioned tool growth (for example v9.6.1 adds build tooling and multi-scene ops)
  • Performance tip: README claims batch_execute can be 10–100× faster than individual calls

Treat Unity as an API, Not a GUI

The win is not “an LLM can click buttons” — it’s that your editor workflow becomes a repeatable tool contract:

  • Use batch_execute for multi-step operations so you get one atomic-ish plan and fewer round-trips.
  • Route requests to the correct Unity instance when you have multiple editors open.
  • Keep transports local-first (loopback) unless you truly need LAN binding.

Once connected, you can standardize tasks:

  • “Create a new scene from template, add a prefab, set lighting defaults”
  • “Scan packages, add a scoped registry, then validate compile”
  • “Build a player with a known profile and export artifacts”

That makes AI-assisted Unity work auditable: every change is a tool call you can reproduce.

FAQ

Q: Do I need Python? A: Yes. The README lists Python 3.10+ and uv as requirements for the bridge/server pieces.

Q: Which transport should I start with? A: HTTP localhost is the default and works with many clients; stdio is also available.

Q: How do I speed up multi-step edits? A: Use batch_execute (README claims 10–100× faster).

🙏

Fuente y agradecimientos

Source: https://github.com/CoplayDev/unity-mcp > License: MIT > GitHub stars: 9,486 · forks: 1,074

Discusión

Inicia sesión para unirte a la discusión.
Aún no hay comentarios. Sé el primero en compartir tus ideas.

Activos relacionados