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

Open Source Agent Skill for TypeScript, React, and Next.js Patterns
A developer has released a 4,000-line, 17-file structured markdown reference designed for AI agents like Claude Code to follow when generating or reviewing TypeScript, React, and Next.js code. It addresses common issues like improper API response validation and misuse of 'use client' directives.

Chrome Extension Adds Live Preview to Claude Code Web
A Chrome extension called Claude Code Preview adds live preview functionality to Claude Code Web, similar to Lovable and other 'vibecoding' sites, allowing side-by-side viewing of deployments.

BaseLayer: Open-Source Behavioral Compression Pipeline for AI Memory Systems
BaseLayer is an open-source pipeline that extracts beliefs, behaviors, tensions, and contradictions from conversations, journals, and published text, compressing them into an identity brief for AI models. It has been tested on datasets ranging from 8 personal journal entries to large corpora like Warren Buffett's shareholder letters (350k words) and Howard Marks' investment memos (600k words).

AIsbf 0.9.8 adds caching, routing improvements, and expanded AI service support
AIsbf 0.9.8 is an API proxy/router that exposes an OpenAI-compatible interface to multiple AI services. This release adds Redis, SQLite, MySQL, and file-based caching, improved semantic routing, and full OAuth2 support for Claude.ai, Amazon Kiro-cli, OpenAI Codex, and Kilo.ai subscribers.