MCP Catalogs
首页

filesystem vs google-ai-mode-mcp

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

filesystem
by modelcontextprotocol
google-ai-mode-mcp
by PleasePrompto
Stars★ 85,748★ 117
30天用量
综合分7746
官方
分类
本地文件系统开发者工具效率工具
搜索AI / LLM 工具开发者工具
实现语言TypeScriptTypeScript
最近提交本月4 个月前

filesystem · 概述

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

google-ai-mode-mcp · 概述

MCP 服务器,为任何 LLM 客户端提供带引用的 Google AI 搜索功能。

filesystem · 使用场景

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

google-ai-mode-mcp · 使用场景

  • 研究编程主题和最佳实践,包含官方文档示例
  • 比较软件产品的技术规格和功能
  • 研究法规变化和法律要求,包含政府来源

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

google-ai-mode-mcp · 安装

安装

**Claude Code:**

claude mcp add google-ai-search npx google-ai-mode-mcp@latest

**Cursor、Windsurf、Zed 或其他 MCP 客户端:**

{
  "mcpServers": {
    "google-ai-search": {
      "command": "npx",
      "args": ["google-ai-mode-mcp@latest"]
    }
  }
}

**Linux/WSL 用户:** 如果遇到 X-Server 错误,请使用 xvfb-run:

{
  "mcpServers": {
    "google-ai-search": {
      "command": "xvfb-run",
      "args": ["-a", "npx", "google-ai-mode-mcp@latest"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。