Skip to main content

MCP for Unity Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP).

Project description

MCP for Unity Server

MCP python License Discord

Model Context Protocol server for Unity Editor integration. Control Unity through natural language using AI assistants like Claude, Cursor, and more.

Maintained by Coplay - This project is not affiliated with Unity Technologies.

💬 Join our community: Discord Server

Required: Install the Unity MCP Plugin to connect Unity Editor with this MCP server. You also need uvx (requires uv) to run the server.


Installation

Option 1: PyPI

Install and run directly from PyPI using uvx.

Run Server (HTTP):

uvx --from mcpforunityserver mcp-for-unity --transport http --http-url http://localhost:8080

MCP Client Configuration (HTTP):

{
  "mcpServers": {
    "UnityMCP": {
      "url": "http://localhost:8080/mcp"
    }
  }
}

MCP Client Configuration (stdio):

{
  "mcpServers": {
    "UnityMCP": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpforunityserver",
        "mcp-for-unity",
        "--transport",
        "stdio"
      ]
    }
  }
}

Option 2: From GitHub Source

Use this to run the latest released version from the repository. Change the version to main to run the latest unreleased changes from the repository.

{
  "mcpServers": {
    "UnityMCP": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/CoplayDev/unity-mcp@v9.5.3#subdirectory=Server",
        "mcp-for-unity",
        "--transport",
        "stdio"
      ]
    }
  }
}

Option 3: Docker

Use Pre-built Image:

docker run -p 8080:8080 msanatan/mcp-for-unity-server:latest --transport http --http-url http://0.0.0.0:8080

Build Locally:

docker build -t unity-mcp-server .
docker run -p 8080:8080 unity-mcp-server --transport http --http-url http://0.0.0.0:8080

Configure your MCP client with "url": "http://localhost:8080/mcp".

Option 4: Local Development

For contributing or modifying the server code:

# Clone the repository
git clone https://github.com/CoplayDev/unity-mcp.git
cd unity-mcp/Server

# Run with uv
uv run src/main.py --transport stdio

Configuration

The server connects to Unity Editor automatically when both are running. Most users do not need to change any settings.

CLI options

These options apply to the mcp-for-unity command (whether run via uvx, Docker, or python src/main.py).

  • --transport {stdio,http} - Transport protocol (default: stdio)
  • --http-url URL - Base URL used to derive host/port defaults (default: http://localhost:8080)
  • --http-host HOST - Override HTTP bind host (overrides URL host)
  • --http-port PORT - Override HTTP bind port (overrides URL port)
  • --http-remote-hosted - Treat HTTP transport as remotely hosted
    • Requires API key authentication (see below)
    • Disables local/CLI-only HTTP routes (/api/command, /api/instances, /api/custom-tools)
    • Forces explicit Unity instance selection for MCP tool/resource calls
    • Isolates Unity sessions per user
  • --api-key-validation-url URL - External endpoint to validate API keys (required when --http-remote-hosted is set)
  • --api-key-login-url URL - URL where users can obtain/manage API keys (served by /api/auth/login-url)
  • --api-key-cache-ttl SECONDS - Cache duration for validated keys (default: 300)
  • --api-key-service-token-header HEADER - Header name for server-to-auth-service authentication (e.g. X-Service-Token)
  • --api-key-service-token TOKEN - Token value sent to the auth service for server authentication
  • --default-instance INSTANCE - Default Unity instance to target (project name, hash, or Name@hash)
  • --project-scoped-tools - Keep custom tools scoped to the active Unity project and enable the custom tools resource
  • --unity-instance-token TOKEN - Optional per-launch token set by Unity for deterministic lifecycle management
  • --pidfile PATH - Optional path where the server writes its PID on startup (used by Unity-managed terminal launches)

Environment variables

  • UNITY_MCP_TRANSPORT - Transport protocol: stdio or http
  • UNITY_MCP_HTTP_URL - HTTP server URL (default: http://localhost:8080)
  • UNITY_MCP_HTTP_HOST - HTTP bind host (overrides URL host)
  • UNITY_MCP_HTTP_PORT - HTTP bind port (overrides URL port)
  • UNITY_MCP_HTTP_REMOTE_HOSTED - Enable remote-hosted mode (true, 1, or yes)
  • UNITY_MCP_DEFAULT_INSTANCE - Default Unity instance to target (project name, hash, or Name@hash)
  • UNITY_MCP_SKIP_STARTUP_CONNECT=1 - Skip initial Unity connection attempt on startup

API key authentication (remote-hosted mode):

  • UNITY_MCP_API_KEY_VALIDATION_URL - External endpoint to validate API keys
  • UNITY_MCP_API_KEY_LOGIN_URL - URL where users can obtain/manage API keys
  • UNITY_MCP_API_KEY_CACHE_TTL - Cache TTL for validated keys in seconds (default: 300)
  • UNITY_MCP_API_KEY_SERVICE_TOKEN_HEADER - Header name for server-to-auth-service authentication
  • UNITY_MCP_API_KEY_SERVICE_TOKEN - Token value sent to the auth service for server authentication

Telemetry:

  • DISABLE_TELEMETRY=1 - Disable anonymous telemetry (opt-out)
  • UNITY_MCP_DISABLE_TELEMETRY=1 - Same as DISABLE_TELEMETRY
  • MCP_DISABLE_TELEMETRY=1 - Same as DISABLE_TELEMETRY
  • UNITY_MCP_TELEMETRY_ENDPOINT - Override telemetry endpoint URL
  • UNITY_MCP_TELEMETRY_TIMEOUT - Override telemetry request timeout (seconds)

Examples

Stdio (default):

uvx --from mcpforunityserver mcp-for-unity --transport stdio

HTTP (local):

uvx --from mcpforunityserver mcp-for-unity --transport http --http-host 127.0.0.1 --http-port 8080

HTTP (remote-hosted with API key auth):

uvx --from mcpforunityserver mcp-for-unity \
  --transport http \
  --http-host 0.0.0.0 \
  --http-port 8080 \
  --http-remote-hosted \
  --api-key-validation-url https://auth.example.com/api/validate-key \
  --api-key-login-url https://app.example.com/api-keys

Disable telemetry:

DISABLE_TELEMETRY=1 uvx --from mcpforunityserver mcp-for-unity --transport stdio

Remote-Hosted Mode

When deploying the server as a shared remote service (e.g. for a team or Asset Store users), enable --http-remote-hosted to activate API key authentication and per-user session isolation.

Requirements:

  • An external HTTP endpoint that validates API keys. The server POSTs {"api_key": "..."} and expects {"valid": true, "user_id": "..."} or {"valid": false} in response.
  • --api-key-validation-url must be provided (or UNITY_MCP_API_KEY_VALIDATION_URL). The server exits with code 1 if this is missing.

What changes in remote-hosted mode:

  • All MCP tool/resource calls and Unity plugin WebSocket connections require a valid X-API-Key header.
  • Each user only sees Unity instances that connected with their API key (session isolation).
  • Auto-selection of a sole Unity instance is disabled; users must explicitly call set_active_instance.
  • CLI REST routes (/api/command, /api/instances, /api/custom-tools) are disabled.
  • /health and /api/auth/login-url remain accessible without authentication.

MCP client config with API key:

{
  "mcpServers": {
    "UnityMCP": {
      "url": "http://remote-server:8080/mcp",
      "headers": {
        "X-API-Key": "<your-api-key>"
      }
    }
  }
}

For full details, see Remote Server Auth Guide and Architecture Reference.


MCP Resources

The server provides read-only MCP resources for querying Unity Editor state. Resources provide up-to-date information about your Unity project without modifying it.

Accessing Resources:

Resources are accessed by their URI (not their name). Always use ListMcpResources to get the correct URI format.

Example URIs:

  • mcpforunity://editor/state - Editor readiness snapshot
  • mcpforunity://project/tags - All project tags
  • mcpforunity://scene/gameobject/{instance_id} - GameObject details by ID
  • mcpforunity://prefab/{encoded_path} - Prefab info by asset path

Important: Resource names use underscores (e.g., editor_state) but URIs use slashes/hyphens (e.g., mcpforunity://editor/state). Always use the URI from ListMcpResources() when reading resources.

All resource descriptions now include their URI for easy reference. List available resources to see the complete catalog with URIs.


Example Prompts

Once connected, try these commands in your AI assistant:

  • "Create a 3D player controller with WASD movement"
  • "Add a rotating cube to the scene with a red material"
  • "Create a simple platformer level with obstacles"
  • "Generate a shader that creates a holographic effect"
  • "List all GameObjects in the current scene"

Documentation

For complete documentation, troubleshooting, and advanced usage:

📖 Full Documentation


Requirements

  • Python: 3.10 or newer
  • Unity Editor: 2021.3 LTS or newer
  • uv: Python package manager (Installation Guide)

License

MIT License - See LICENSE

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcpforunityserver-9.5.4b20260311053122.tar.gz (269.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcpforunityserver-9.5.4b20260311053122-py3-none-any.whl (267.9 kB view details)

Uploaded Python 3

File details

Details for the file mcpforunityserver-9.5.4b20260311053122.tar.gz.

File metadata

File hashes

Hashes for mcpforunityserver-9.5.4b20260311053122.tar.gz
Algorithm Hash digest
SHA256 4998ce78b9a8076e34519ad7e0feaa69df07c30dca5fbe33ba12c626a40d59c1
MD5 078bd77c98e2400c27f21b9ce49fde5b
BLAKE2b-256 2bd5eb0db3124de2ead410ef018eb495edf8f16e305f9daefe36af7772f0c3b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcpforunityserver-9.5.4b20260311053122.tar.gz:

Publisher: beta-release.yml on CoplayDev/unity-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcpforunityserver-9.5.4b20260311053122-py3-none-any.whl.

File metadata

File hashes

Hashes for mcpforunityserver-9.5.4b20260311053122-py3-none-any.whl
Algorithm Hash digest
SHA256 3e3b2a71749d1384bd7f82816713eb88f8a4c1eb96ddb643527941cb423568c5
MD5 fb35046bf15fe5172e38104c12cfb99e
BLAKE2b-256 d87a081b56a63c10187b6525ab596d28e1f27a677b21dc1fd9f27615fe819b52

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcpforunityserver-9.5.4b20260311053122-py3-none-any.whl:

Publisher: beta-release.yml on CoplayDev/unity-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page