claude-code-google-workspace vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
claude-code-google-workspace by evolsb | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具沟通协作开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Shell | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
claude-code-google-workspace · 概述
支持多账户的 Google Workspace 和 Slack MCP 服务器。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
claude-code-google-workspace · 使用场景
- 跨多个 Google 账户访问邮件和文档
- 从 Slack 和 Google Workspace 管理日历事件和任务
- 搜索和检索 Google Drive 和 Slack 对话中的内容
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
claude-code-google-workspace · 安装
快速开始
- 克隆此仓库并在其中打开 Claude Code
git clone https://github.com/YOUR_USERNAME/claude-code-google-workspace.git
cd claude-code-google-workspace
claude- 告诉 Claude Code:"为我设置 Google Workspace MCP"
- 重启 Claude Code 以加载新的 MCP 服务器
手动设置
有关详细步骤说明,请参考 [docs/manual-setup.md](docs/manual-setup.md)。
配置
在项目根目录创建 .mcp.json:
{
"mcpServers": {
"gws-personal": {
"command": "bash",
"args": ["./gws-token-wrapper.sh", "personal.json"]
},
"slack": {
"command": "npx",
"args": ["slack-mcp-server"]
}
}
}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 中安装。