MCP Catalogs
首页

cesium-mcp vs filesystem

并排对比,帮你在这两个 MCP server 之间做选择。

cesium-mcp
by gaopengbin
filesystem
by modelcontextprotocol
Stars★ 103★ 85,748
30天用量
综合分4877
官方
分类
开发者工具AI / LLM 工具其它
本地文件系统开发者工具效率工具
实现语言JavaScriptTypeScript
最近提交1 个月前本月

cesium-mcp · 概述

AI驱动的CesiumJS 3D地球控制,通过MCP提供49个工具用于相机、实体、图层、动画和空间分析。

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

cesium-mcp · 使用场景

  • Web应用中的3D地球可视化自然语言控制
  • 通过对话界面进行AI驱动的GIS分析
  • 将3D地球功能集成到Claude和Cursor等AI助手

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

cesium-mcp · 安装

安装

选项1:浏览器代理(快速开始推荐)

  1. 访问[在线演示](https://cesium-browser-agent.pages.dev/)
  2. 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 3000
Claude Desktop配置
{
  "mcpServers": {
    "cesium": {
      "command": "npx",
      "args": ["-y", "cesium-mcp-runtime"]
    }
  }
}

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 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。