ue5-mcp-bridge
by Natfii·★ 45·综合分 47
MCP服务器连接AI助手与虚幻引擎5编辑器,实现游戏开发资产和工作流的直接操作。
概述
这个MCP服务器提供了AI助手与虚幻引擎5之间的全面桥梁,允许开发者通过自然语言命令与其项目交互。它支持对关卡、角色、蓝图、动画蓝图、材质和其他游戏资产的操控。服务器实现了标准模型上下文协议,可与多个AI客户端配合使用,包括Claude桌面版、OpenAI ChatGPT桌面版、Cursor等。最初是UnrealClaude插件的一部分,现已移至独立仓库,以支持更广泛的MCP应用和社区贡献。
试试问 AI
装完之后,这里有 7 个你可以让 AI 做的事:
什么时候选它
如果您已经在使用虚幻引擎5,并希望通过能够直接操作项目资源、蓝图和编辑器功能的AI助手来加速开发工作流,请选择此MCP服务器。
什么时候不要选它
如果您需要使用其他游戏引擎、需要3D模型/纹理生成功能,或者没有安装和配置所需的HTTP后端,请不要选择它。
此 server 暴露的工具
从 README 抽取出 12 个工具unreal_statusCheck connection to Unreal Editor
unreal_open_levelOpen, create, or list level maps in the editor
unreal_spawn_actorSpawn actors in the level
unreal_blueprint_modifyModify Blueprints by creating variables, functions, and nodes
unreal_anim_blueprint_modifyCreate and modify Animation Blueprints and state machines
unreal_asset_searchSearch for assets by class, path, or name
unreal_execute_scriptExecute C++, Python, or console scripts in Unreal
unreal_set_propertySet properties on actors
unreal_enhanced_inputCreate and modify Enhanced Input assets
unreal_task_submitSubmit a task for background execution
unreal_get_ue_contextGet UE 5.7 API documentation by category or query
unreal_character_dataCreate and manage character configuration DataAssets and stats DataTables
可对比工具
安装
安装
- 克隆仓库:
git clone https://github.com/Natfii/unrealclaude-mcp-bridge.git
cd unrealclaude-mcp-bridgenpm install- 配置您的MCP客户端:
**Claude桌面版** (claude_desktop_config.json):
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
"env": {
"UNREAL_MCP_URL": "http://localhost:3000"
}
}
}
}**Claude Code** (~/.claude/settings.json):
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
"env": {
"UNREAL_MCP_URL": "http://localhost:3000"
}
}
}
}FAQ
- 哪些AI客户端与此MCP服务器兼容?
- 此服务器可与任何兼容MCP的AI客户端配合使用,包括Claude Code、Claude桌面应用、OpenAI ChatGPT桌面版、Cursor、Replit、Sourcegraph Cody、Windsurf和其他符合MCP标准的工具。
- 这是可以自动生成资产的'文本到游戏'工具吗?
- 不,这不是'文本到游戏'工具。它是面向虚幻引擎开发人员的工作流加速器,可帮助处理重复性任务、项目设置和快速原型设计,但不会取代艺术家、动画师和资产创作者的工作。
- 系统要求是什么?
- 需要Node.js 18.0.0或更高版本,以及实现所需REST API的HTTP端点(默认为http://localhost:3000)。该服务器设计为与UnrealClaude插件配合使用,但可调整为其他实现相同API的HTTP后端。
ue5-mcp-bridge 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。