filesystem vs UnrealGenAISupport
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | UnrealGenAISupport by prajwalshettydev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 587 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具其它 |
| 实现语言 | TypeScript | C++ |
| 最近提交 | 本月 | 1 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
UnrealGenAISupport · 概述
虚幻引擎插件,支持200多种AI模型,通过MCP服务器实现场景控制和蓝图生成功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
UnrealGenAISupport · 使用场景
- 使用代理式LLM实例在虚幻引擎项目中开发NPC AI
- 通过Claude Desktop自动生成和修改蓝图及游戏对象
- 使用Meshy、Tripo和Hunyuan3D等AI模型从文本提示生成3D资源
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
UnrealGenAISupport · 安装
安装方法
通过Git安装:
- 克隆仓库:
git clone https://github.com/prajwalshettydev/UnrealGenAISupport.git - 将插件添加到您的虚幻引擎项目
- 重启编辑器
通过虚幻市场(Fab)安装:
- 从[Fab市场](https://muddyterrain.com/t/genai-fab)下载
- 安装到您的项目
为Claude Desktop设置MCP:
- 添加到Claude Desktop配置(
claude_desktop_config.json):
{
"mcpServers": {
"unreal": {
"command": "您的UnrealEngine/Binaries/您的平台/YourProject.exe路径",
"args": ["-mcp"]
}
}
}