Unity MCP Template - Secure MCP Server by ALMC Security 2025

Unity MCP Template

View on GitHub

GitHub License

Unity MCP Template

mcp-template-ezgif com-resize

This is a simple example project demonstrating interaction between a TypeScript-based MCP server and Unity. You can build and configure your own tools to expand and develop further.

Create more tools your own!

Quick Start

unity-mcp-sample is a Unity example project. To minimize version-related issues and ensure compatibility with legacy versions, it does not use packages like NewtonsoftJSON. Additionally, the EditorWindow is implemented using IMGUI. The MCP can be managed through the UnityMCP-ShowWindow at the top.

Build MCP Server

within the unity-mcp-server

npm install
npm run build

Add MCP in Claude Desktop

Open Claude Desktop Settings, and Developer-Edit Config

{
    "mcpServers": {
      "unity-mcp": {
        "command": "node",
        "args":["F:/unity-mcp-template/unity-mcp-server/dist/index.js"]
      }
    }
  }

Create your own tools!

Both input data structure should be same.

Unity

Refer to CreateObjectTools and create the tool you want.

Typescript

Refer to createObject and create the tool you want.

TODO List

  • Enable Unity to send result messages to MCP
  • Discussion hereChange TCP structure (currently implemented with client-server reversed due to a bug in the TypeScript SDK)
    • Unity (Current : TCP Server, TODO : TCP Client)
    • MCP (Current : TCP Client, TODO : TCP Server)

Related in Development - Secure MCP Servers

ServerSummaryActions
AI Agent with MCPEste projeto implementa um agente de IA que utiliza o Model Context Protocol (MCP) para interagir co...View
CLI ExecA powerful CLI command execution MCP server that enables running shell commands with structured outp...View
TestRailView
Synth MCPA remote MCP (Model Context Protocol) server that provides AI assistants with access to the Synth Fi...View
Midjourney MCPA MCP server implementation for generating images with Midjourney.View
MCP ReasonerA reasoning implementation for Claude Desktop that lets you use both Beam Search and Monte Carlo Tre...View