# Does Unity have an MCP server?

**Yes — Official.** Unity maintains an official MCP server.

> Unity's official server is in beta, delivered inside the editor via the AI Assistant package. The community CoplayDev/unity-mcp (~13.3k stars) remains the most-used option.

## Facts

- Verdict: Official (Yes)
- Access: Built into the product — Ships inside the vendor's own app or CLI rather than as a standalone download.
- Endpoint: `Unity MCP Server (in-editor, com.unity.ai.assistant)`
- Category: [Gaming](https://mcpyet.com/category/gaming/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **In-product:** Unity MCP Server (in-editor, com.unity.ai.assistant) — ships inside Unity's own product rather than as a standalone server. Documented at <https://docs.unity3d.com/Packages/com.unity.ai.assistant@2.0/manual/unity-mcp-overview.html>.
- **Community alternative:** [CoplayDev/unity-mcp](https://github.com/CoplayDev/unity-mcp) — ★ 13k, pushed 2026-08-07. Unity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.

## How to connect it

Ships inside the vendor's own app or CLI rather than as a standalone download.

### Claude Code

```sh
claude mcp add unity -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "unity": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "unity": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "unity": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Unity Technologies shipped an official Unity MCP Server (beta, ~May 2026) documented at docs.unity3d.com. Seed said COMMUNITY-ONLY.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Gaming

- [Godot Engine](https://mcpyet.com/mcp/godot.md) — Community only (Sort of)
- [Roblox Studio](https://mcpyet.com/mcp/roblox.md) — Official (Yes)
- [Ori Iscovici](https://mcpyet.com/mcp/isco-tec.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/unity/ — data refreshed 2026-08-11
