everything vs ue5-mcp-bridge
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ue5-mcp-bridge by Natfii | |
|---|---|---|
| Stars | ★ 85,748 | ★ 45 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ue5-mcp-bridge · 概述
MCP服务器连接AI助手与虚幻引擎5编辑器,实现游戏开发资产和工作流的直接操作。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ue5-mcp-bridge · 使用场景
- 自动化重复的UE5设置任务,如创建蓝图和配置输入绑定
- 通过自然语言命令直接操控游戏元素('在位置0,0,500处生成点光源')
- 通过描述所需功能快速原型设计,而不是导航复杂菜单
- 在编辑器中工作时查询UE5 API文档上下文
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingue5-mcp-bridge · 安装
安装
- 克隆仓库:
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"
}
}
}
}