Open Standard 200+ Tools Free & Open Source

Connect AI to Unity Editor

Use the Model Context Protocol to let Claude, Cursor, Windsurf, and any MCP-compatible client control Unity Editor natively. No code needed.

How It Works

A lightweight bridge translates MCP calls into HTTP requests to Unity

AI Client

Claude Desktop, Cursor, Windsurf, VS Code Copilot

↓ MCP (stdio, JSON-RPC 2.0) ↓

uac-mcp-server

Bridge — translates MCP tool calls to HTTP

↓ HTTP REST (localhost:7777) ↓

Unity Editor + UAC Plugin

200+ endpoints for full editor control

Quick Setup

Choose your AI client and start in under a minute

Claude Code

Terminal
claude mcp add unity -- npx -y uac-mcp-server

Claude Desktop

claude_desktop_config.json
{
  "mcpServers": {
    "unity": {
      "command": "npx",
      "args": ["-y", "uac-mcp-server"]
    }
  }
}

Cursor

.cursor/mcp.json
{
  "mcpServers": {
    "unity": {
      "command": "npx",
      "args": ["-y", "uac-mcp-server"]
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "unity": {
      "command": "npx",
      "args": ["-y", "uac-mcp-server"]
    }
  }
}

VS Code Copilot

.vscode/mcp.json
{
  "servers": {
    "unity": {
      "command": "npx",
      "args": ["-y", "uac-mcp-server"]
    }
  }
}

Any MCP Client

Terminal
# Install globally
npm install -g uac-mcp-server

# Or run directly
npx -y uac-mcp-server

200+ MCP Tools

Every Unity Editor operation available as a native AI tool

GameObjects

  • gameobject_create
  • gameobject_delete
  • gameobject_transform
  • gameobject_list
  • gameobject_clone
  • gameobject_component_add

Scenes

  • scene_create
  • scene_open
  • scene_save
  • scene_list
  • scene_active

Assets

  • asset_create
  • asset_delete
  • asset_move
  • asset_rename
  • asset_search

Materials

  • material_create
  • material_color
  • material_shader
  • material_texture

Terrain

  • terrain_create
  • terrain_height
  • terrain_paint
  • terrain_trees
  • terrain_grass

Build & More

  • build_start
  • build_settings
  • console_log
  • camera_screenshot
  • prefab_create

Ready to connect AI to Unity?

Install the UAC plugin, run the MCP server, and start building with AI.