AI Skill Hub 推荐使用:Unreal Engine Vibe Coding tool 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Unreal Engine Vibe Coding tool 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Unreal Engine Vibe Coding tool 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/kevinpbuckley/VibeUE
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"unreal-engine-vibe-coding-tool": {
"command": "npx",
"args": ["-y", "vibeue"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Unreal Engine Vibe Coding tool 执行以下任务... Claude: [自动调用 Unreal Engine Vibe Coding tool MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"unreal_engine_vibe_coding_tool": {
"command": "npx",
"args": ["-y", "vibeue"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
VibeUE uses a Python-first architecture that gives AI assistants access to:
---
terrain_data( action="get_water_features", lng=-122.4194, lat=37.7749, map_size=17.28 )
**Parameters (generate_heightmap):**
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `action` | string | *(required)* | `generate_heightmap`, `preview_elevation`, `get_map_image`, `list_styles`, `get_water_features` |
| `lng` | number | — | Longitude of center point |
| `lat` | number | — | Latitude of center point |
| `format` | string | `png` | Output: `png`, `raw`, `zip` |
| `resolution` | number | 1081 | Output NxN pixels — MUST match landscape resolution |
| `map_size` | number | 17.28 | Map size in km |
| `base_level` | number | 0 | Base elevation offset in meters |
| `height_scale` | number | 100 | Height scale % (1-250) |
| `water_depth` | number | 40 | Water depth in C:S units |
| `blur_passes` | number | 10 | Plains smoothing passes |
| `sharpen` | boolean | true | Apply sharpening |
| `save_path` | string | `Saved/Terrain/` | Custom output path |
**Workflow:** `preview_elevation` → use suggested `base_level` and `height_scale` → `generate_heightmap` with `resolution` matching your landscape → `import_heightmap` via LandscapeService.
**Water workflow:** After importing a heightmap, call `get_water_features` with the same `lng`/`lat`/`map_size`. This saves a JSON file to `Saved/Terrain/` with rivers (`ue5_points`) and water bodies (`ue5_rings`) in origin-centered UE5 coordinates. Use the saved JSON to create landscape splines for rivers and mesh planes for lakes.
##### Deep Research Tool
**`deep_research`**python
VibeUE automatically enables these required plugins during installation:
| Plugin | Purpose |
|---|---|
| **PythonScriptPlugin** | Python runtime and Unreal Engine Python API |
| **EditorScriptingUtilities** | Blueprint and asset manipulation APIs |
| **EnhancedInput** | Input system discovery and configuration |
| **AudioCapture** | Speech-to-text input for in-editor chat |
| **Niagara** | Niagara VFX system and emitter manipulation |
| **MeshModelingToolset** | Skeleton modifier for bone manipulation |
---
manage_asset(action="save_all")
Double-click to build:
Plugins/VibeUE/BuildPlugin.bat
Or specify your Unreal Engine path explicitly (skips auto-detection):
Plugins/VibeUE/BuildPlugin.bat "C:\Program Files\Epic Games\UE_5.7"
If the provided path is invalid, the script falls back to automatic detection.
terrain_data(action="preview_elevation", lng=-122.4194, lat=37.7749)
⚠️ Required for MCP tools: The VibeUE API key is validated at startup. If no valid key is configured, all MCP tools will return an error. Get your free key at vibeue.com/login.
---
| Setting | Default | Description |
|---|---|---|
| **LLM Provider** | VibeUE | Select VibeUE or OpenRouter |
| **Temperature** | 0.2 | Creativity (0.0-1.0) |
| **Max Tool Iterations** | 100 | Max tool calls per turn |
---
manage_asset(action="move", source_path="/Game/StateTree/STT_Rotate", destination_path="/Game/StateTree/Tasks/STT_Rotate")
terrain_data( action="get_map_image", lng=-122.4194, lat=37.7749, style="satellite-v9" # satellite-v9, outdoors-v11, streets-v11, light-v10, dark-v10 )
High-level services exposed to Python for common game development tasks:
| Service | Methods | Domain |
|---|---|---|
StateTreeService | 94 | StateTree asset creation, state hierarchy, state type/link configuration, editor selection, tasks, evaluators, conditions, transitions, delegate bindings, parameters, component overrides, property bindings, **utility AI considerations**, compile/save |
BlueprintService | 119 | Blueprint lifecycle, variables, functions, components, **interfaces (add/remove)**, nodes, **event dispatchers (multicast delegates) + broadcast nodes + bind-on-variable**, **custom event input pin CRUD**, **timelines (float/vector/color/event tracks, key CRUD)**, comment boxes, batch graph builder, subset auto-layout |
AnimSequenceService | 89 | Animation sequence creation, keyframes, bone tracks, curves, notifies, preview |
LandscapeService | 68 | Landscape creation, sculpting, heightmaps, weight layers, holes, splines |
AnimMontageService | 62 | Animation montages: sections, slots, segments, branching points, blend settings |
SkeletonService | 53 | Skeleton & skeletal mesh manipulation, bones, sockets, retargeting, curves, blend profiles |
MaterialNodeService | 41 | Material graph expressions and connections, **material diagnostics (compile errors + sampler info)** |
WidgetService | 41 | UMG widget blueprints, components, snapshots, styling, animation, preview/PIE validation, and MVVM ViewModel bindings |
AnimGraphService | 48 | Animation Blueprint state machines, states, transitions, transition rules, declarative builder, validation, anim nodes |
SoundCueService | 38 | Sound cue graph editing, sound node creation, wiring, and audio behavior authoring |
NiagaraService | 37 | Niagara system lifecycle, emitters, parameters, settings discovery |
ActorService | 33 | Level actor management, viewport camera control, transform lock/constraints |
MaterialService | 30 | Materials and material instances |
EngineSettingsService | 23 | Engine settings, rendering, physics, audio, cvars, scalability |
InputService | 23 | Enhanced Input actions, contexts, modifiers, triggers |
NiagaraEmitterService | 23 | Niagara emitter modules, renderers, properties |
LandscapeMaterialService | 22 | Landscape material layers, blend nodes, auto-material creation, layer info objects, grass output |
UVMappingService | 22 | **Per-LOD UV channel inspection, transforms, lightmap generation, per-region edits (by normal / polygon group / UV island), auto-unwrap (planar/box/cylindrical), packing, layout export** |
EnumStructService | 20 | User-defined enums and structs (create, edit, delete) |
AssetDiscoveryService | 21 | Asset search, import (image files from disk) / export, references, move/rename workflows |
ViewportService | 19 | Viewport camera type (perspective/ortho), view mode, FOV, clip planes, exposure, game view, cinematic control, camera speed, viewport layout (single/quad) |
MetaSoundService | 17 | MetaSound graph authoring, nodes, interfaces, inputs/outputs, and wiring |
ProjectSettingsService | 16 | Project settings, editor preferences, UI configuration |
EditorTransactionService | 16 | Undo/redo, transaction grouping, history inspection, buffer reset |
FoliageService | 15 | Foliage type management, scatter placement, layer-aware painting, instance queries |
DataTableService | 15 | DataTable rows and structure |
DataAssetService | 11 | UDataAsset instances and properties |
GameplayTagService | 8 | Gameplay tag CRUD: add, remove, rename, list, filter, hierarchy inspection |
ScreenshotService | 6 | Editor window, viewport, and **per-asset-editor** screenshot capture for AI vision |
RuntimeVirtualTextureService | 4 | Runtime Virtual Texture assets, RVT volume actors, and landscape RVT assignment |
Direct access to all unreal.* modules: - unreal.EditorAssetLibrary - Asset operations - unreal.EditorActorSubsystem - Level actor manipulation (via unreal.get_editor_subsystem()) - - DEPRECATED — use unreal.EditorLevelLibraryEditorActorSubsystem instead - unreal.EditorUtilityLibrary - Editor utilities - unreal.SystemLibrary - System functions - All Unreal Python APIs available in the editor
---
The AI must know: - ✅ Always use discover_python_class() before calling service methods - ✅ Compile blueprints before adding variable nodes - ✅ Use full asset paths (/Game/Path/Asset, not Asset) - ✅ Property values are strings, not Python types - ✅ Load skills with manage_skills for domain-specific knowledge - ❌ Never guess method names - discover first - ❌ Never use modal dialogs or blocking operations - ❌ Never assume service counts or method availability
---
The recommended pattern:
```python import unreal
```python
该工具提供了开源MCP工具,帮助开发者提高编程效率和自动化能力,但缺乏详细的使用文档和示例场景
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,Unreal Engine Vibe Coding tool 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | VibeUE |
| Topics | mcpaiai-toolsautomationblueprintclaudec++ |
| GitHub | https://github.com/kevinpbuckley/VibeUE |
| License | MIT |
| 语言 | C++ |
收录时间:2026-05-25 · 更新时间:2026-05-25 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端