Unreal Engine Generative AI Support Plugin MCP Server

Unreal Engine plugin for LLM/GenAI models & MCP UE5 server. OpenAI GPT-5, Deepseek R1, Claude Opus/Sonnet, Gemini 3, Grok 4, Alibaba Qwen, Kimi

Local serverstdioPython

What is the Unreal Engine Generative AI Support Plugin MCP server?

Most AI and media services work still happens through a UI a human drives. Unreal Engine Generative AI Support Plugin MCP server moves it into the conversation instead. Unreal Engine plugin for LLM/GenAI models & MCP UE5 server. OpenAI GPT-5, Deepseek R1, Claude Opus/Sonnet, Gemini 3, Grok 4, Alibaba Qwen, Kimi, ElevenLabs TTS, Inworld, OpenRouter, Groq, GLM, Ollama, Local, Meshy, Tripo, Hunyuan3D, Rodin.

The short version

Every month, hundreds of new AI models are released by various organizations, making it hard to keep up with the latest advancements.

Getting it running

Installation goes through your MCP client rather than a global install: point it at fastmcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 2 tools. What each one is for:

  • OpenAI — Chat (gpt-4.1, gpt-4.1-mini, o4-mini, o3, o3-pro), Structured Outputs
  • DeepSeek — Chat (deepseek-chat V3.1), Reasoning (deepseek-reasoning-r1)

What it needs from you

Configuration is passed through the environment: UNREAL_HOST, UNREAL_PORT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Unreal Engine Generative AI Support Plugin's toolset — OpenAI, DeepSeek — is a fair guide to whether it matches your workflow. It is maintained by prajwalshettydev; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Unreal Engine Generative AI Support Plugin's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
OpenAIChat (gpt-4.1, gpt-4.1-mini, o4-mini, o3, o3-pro), Structured Outputs
DeepSeekChat (deepseek-chat V3.1), Reasoning (deepseek-reasoning-r1)

How to install the Unreal Engine Generative AI Support Plugin MCP server

{
    "mcpServers": {
      "unreal-handshake": {
        "command": "python",
        "args": ["<your_project_directoy_path>/Plugins/GenerativeAISupport/Content/Python/mcp_server.py"],
        "env": {
          "UNREAL_HOST": "localhost",
          "UNREAL_PORT": "9877" 
        }
      }
    }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
UNREAL_HOSTEndpoint or connection string the server talks to.Optional
UNREAL_PORTConfiguration value read at startup.Optional

Example prompts to try

  • Use Unreal Engine Generative AI Support Plugin to OpenAI.
  • Use Unreal Engine Generative AI Support Plugin to DeepSeek.

Frequently asked questions

Set an environment variable using the format `PS_<ORGNAME>`, for example `PS_OPENAIAPIKEY` for OpenAI. This must be done before starting the Editor and any connected IDE.