Open-source tool enables Claude to control Unreal Engine directly

soft-ue-cli is an open-source tool that enables Claude AI agents to directly control Unreal Engine through command execution. It consists of a Python CLI tool and a C++ plugin that runs inside UE, allowing Claude to send commands that UE executes without manual editor interaction.
How it works
The tool provides two usage modes:
- Claude Code – runs soft-ue-cli commands in the terminal
- Claude Desktop / Cursor / Windsurf – connects via MCP using
soft-ue-cli mcp-serve
Example workflow
A typical session involves asking Claude to "inspect the player Blueprint and add a health component." Claude executes:
soft-ue-cli query-blueprint /Game/BP_Player --include components,variables
soft-ue-cli add-graph-node /Game/BP_Player K2Node_CallFunction \
--properties '{"FunctionReference": {"MemberName": "CreateWidget"}}'
soft-ue-cli compile-blueprint /Game/BP_PlayerThis allows Claude to read Blueprints, modify them, and compile them autonomously.
Available operations
The tool provides 60+ commands including:
- Spawn actors
- Edit Blueprint graphs
- Start/stop Play-In-Editor sessions
- Send input events
- Inspect materials
- Capture screenshots
- Profile performance with UE Insights
- Run Python scripts inside UE
Setup
Installation requires:
pip install soft-ue-cli- Copy one plugin folder into your UE project
- Rebuild the project
- For MCP mode:
pip install soft-ue-cli[mcp]
The developer reports that this significantly accelerates the feedback loop, allowing Claude to query the level, make changes, compile, run the game, and verify results without manual window switching.
The tool is MIT licensed with a single dependency and is available on GitHub at github.com/softdaddy-o/soft-ue-cli.
📖 Read the full source: r/ClaudeAI
👀 See Also

Monarch v3: NES-Inspired KV Paging for 78% Faster LLM Inference
Monarch v3 implements NES-inspired memory paging for transformers, achieving 78% faster inference (17.01 to 30.42 tok/sec) on a 1.1B parameter model with nearly zero VRAM overhead. The open-source algorithm splits KV cache into hot and cold regions with compression and promotion mechanisms.

Phantom: A Persistent AI Agent Built with Claude's Agent SDK
Phantom is an open-source Bun/TypeScript process that wraps Claude's Agent SDK (Opus 4.6) with persistent vector memory, a self-evolution engine, and an MCP server interface. It runs continuously on its own VM or Docker Compose and communicates via Slack.

Users Report Mixed Value from OpenClaw and ClawDBot: What You Need to Know
OpenClaw and ClawDBot, while promising AI tools for code automation, have left some users underwhelmed. This article explores key insights from a Reddit discussion on user experiences and value derived from these platforms.

MCP Slim: Local Embedding Search for MCP Tools Reduces Context Bloat
MCP Slim is a proxy that replaces full MCP tool catalogs with three meta-tools (search, describe, call), using local MiniLM embeddings for semantic search. It achieves 96% context window reduction and works offline without API keys.