Uefn Verse MCP — Development skill for Claude Code
MCP bridge for Unreal Editor for Fortnite that lets Claude Code, Cursor, and other MCP clients drive a live UEFN editor safely.
How to install Uefn Verse MCP
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open quangdang46/uefn-verse-mcp and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Uefn Verse MCP does
MCP bridge for Unreal Editor for Fortnite that lets Claude Code, Cursor, and other MCP clients drive a live UEFN editor safely.
Alternatives in Development
- Mempalace Init — Set up MemPalace — install the package, initialize a palace, register the MCP server with Cursor, and verify e 58.6k ★
- Browser Tools MCP — Monitor browser logs directly from Cursor and other MCP compatible IDEs 7.2k ★
- MCP Proxy — A bridge between Streamable HTTP and stdio MCP transports 2.4k ★
README
uefn-mcp
Python 3.10+ UEFN MCP
A two-process MCP bridge for Unreal Editor for Fortnite that lets Claude Code, Cursor, and other MCP clients drive a live UEFN editor safely.
MCP client (Claude Code / Cursor / custom host)
│
│ stdio
▼
server/main.py ── FastMCP host process
│
│ HTTP 127.0.0.1:8765-8770
▼
Content/Python/uefn_tools/tools/mcp_bridge.py
│
│ queue + Slate tick callback
▼
UEFN editor main thread -> unreal.* -> 354 registered uefn_tools actions
**Quick setup**
git clone https://github.com/quangdang46/uefn-verse-mcp.git
cd uefn-verse-mcp
python -m pip install -r requirements.txt
python deploy.py --project "MyIsland"
There is no packaged one-line installer yet. The supported path today is source checkout plus local deploy into a UEFN project.
TL;DR
The Problem
UEFN's Python layer is powerful, but it is a bad place to host a modern MCP server directly:
unreal.*calls must run on the editor main thread.- Blocking Python code can freeze the editor.
- The MCP SDK belongs in a normal host Python runtime, not inside the editor sandbox.
The Solution
`uefn-mcp` splits the system in two:
server/main.pyruns externally as a FastMCP stdio server.Content/Python/uefn_tools/tools/mcp_bridge.pyruns inside UEFN as a local HTTP listener.- Commands are queued and drained on Slate ticks so editor API calls stay on the main thread.
Why Use `uefn-mcp`?
| Capability | What it gives you |
|---|---|
| 31 direct MCP tools | A curated surface for actors, assets, project info, viewport, logs, and status |
354 run_tool entries |
An escape hatch into the full uefn_tools registry without re-wrapping every action as fir |
Related Skills
CLI Agent MCP
MCP (stdio) server that lets Claude Desktop drive a local headless CLI coding agent (Claude Code or Cursor) as
Agrout Bridge
Local HTTP proxy that routes OpenAI-/Anthropic-compatible clients (OpenCode, Claude Desktop, Cursor) through A
Signal Bridge Remote
A remote MCP server that lets Claude control Bluetooth intimate hardware over the internet via Buttplug.io / I
Sublime Claude Code
Claude Code IDE integration for Sublime Text 4 — in-editor diff review, live selection context, @-mentions. Sp
MCP Linker
mcp store manager, add & syncs MCP server configurations across clients like Claude code, Cursor💡mcphub
Acp Install
One-command install for Agentic Control Plane — see, price, and control every tool call your coding agent make
Related Agents
Intellij Debugger Maintainer
Fix issues, add features, and maintain quality in intellij-debugger. MCP server that lets Claude control Intel
Yas Editor
Safely edits the YAS (Yet Another Statusline) renderer and its tests. Delegate to this agent for any change un
Turbo Agent
Implements Turbo Drive, Turbo Frames, and Turbo Streams for fast, responsive Rails applications with minimal J