AI Control for Unity
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"unity": {
"args": [
"E:/GAME UNITY/MCP SERVER/mcp-server/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This project implements a Model Context Protocol (MCP) server that acts as a bridge between AI agents (like Claude Desktop, Cursor, or custom LLM clients) and the Unity Engine.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / entertainment
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for Antigravity Unity Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Control Unity with AI.
This project implements a Model Context Protocol (MCP) server that acts as a bridge between AI agents (like Claude Desktop, Cursor, or custom LLM clients) and the Unity Engine.
It allows an AI to see, create, modify, and control everything in your Unity scene in real-time.
/Assets)Assets/Scripts/MCP folder into your Unity project.MCPBridge script to any GameObject in your scene (or create an empty one named "MCPBridge").http://localhost:8080.Option A: The Easy Way (Unity Editor)
Option B: The Manual Way (Terminal)
mcp-server folder.npm install (first time only).npm start.Add the server to your MCP Client config (e.g., claude_desktop_config.json).
Important: You need to point to the built file.
{
"mcpServers": {
"unity": {
"command": "node",
"args": ["E:/GAME UNITY/MCP SERVER/mcp-server/dist/index.js"]
}
}
}
(Note: Replace the path with the actual absolute path to your project)
| Tool | Description |
|---|---|
create_primitive | Spawn basic shapes (Cube, Sphere, etc.) |
instantiate_prefab | Spawn complex assets from Resources |
set_object_transform | Move objects (Position) |
set_object_rotation | Rotate objects (Euler Angles) |
set_object_scale | Resize objects |
set_parent | Organize hierarchy |
inspect_component | Read public variables of a script |
edit_component | Change variable values (speed, health, etc.) |
invoke_method | Call functions (Jump(), Attack(), Reset()) |
add_tag / set_object_tag | Manage tags |
delete_object | Remove objects from the scene |