Unreal-mcp/.env.example
StillHammer ee2092dada Implement complete Python MCP server with 12 tools and blueprint-workflow skill
- Add MCP server with real Unreal Remote Execution Protocol (UDP 6766 + TCP 6776)
- Implement 12 MCP tools: project intelligence, scene manipulation, debug/profiling, blueprint ops
- Add enhanced .uasset parser with UE4/UE5 support
- Create /blueprint-workflow skill (analyze, bp-to-cpp, cpp-to-bp, transform, optimize)
- Include 21 passing tests
- Add complete user documentation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 18:59:43 +07:00

16 lines
427 B
Plaintext

# Unreal MCP Server Configuration
# Path to your Unreal project (required for offline mode)
UE_PROJECT_PATH=C:/Path/To/Your/UnrealProject
# TCP Command Port (default: 6776)
# This should match your Unreal Editor Python Remote Execution settings
UE_COMMAND_PORT=6776
# UDP Multicast settings for node discovery
UE_MULTICAST_GROUP=239.0.0.1
UE_MULTICAST_PORT=6766
# Logging level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO