cesium-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
cesium-mcp by gaopengbin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 103 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
cesium-mcp · 概述
AI驱动的CesiumJS 3D地球控制,通过MCP提供49个工具用于相机、实体、图层、动画和空间分析。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cesium-mcp · 使用场景
- Web应用中的3D地球可视化自然语言控制
- 通过对话界面进行AI驱动的GIS分析
- 将3D地球功能集成到Claude和Cursor等AI助手
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cesium-mcp · 安装
安装
选项1:浏览器代理(快速开始推荐)
- 访问[在线演示](https://cesium-browser-agent.pages.dev/)
- Fork [examples/browser-agent](https://github.com/gaopengbin/cesium-mcp/tree/main/examples/browser-agent)文件夹部署自己的版本
选项2:Web应用中的函数调用
npm install cesium-mcp-bridge选项3:MCP运行时
# stdio模式(Claude Desktop, VS Code, Cursor)
npx cesium-mcp-runtime
# HTTP模式(Dify, 远程/云MCP客户端)
npx cesium-mcp-runtime --transport http --port 3000Claude Desktop配置
{
"mcpServers": {
"cesium": {
"command": "npx",
"args": ["-y", "cesium-mcp-runtime"]
}
}
}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-everything