filesystem vs mcp-google-sheets
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | mcp-google-sheets by xing5 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 864 |
| 30天用量 | — | — |
| 综合分 | 77 | 54 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 效率工具开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-google-sheets · 概述
一个功能完善的 Google Sheets MCP 服务器,提供全面的工具支持和多种认证方式。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-google-sheets · 使用场景
- 通过自然语言命令自动执行电子表格的数据录入和更新
- 使用 AI 驱动的分析创建和管理报表和仪表板
- 实现 AI 系统和 Google Sheets 之间的协作工作流程
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 中安装。
mcp-google-sheets · 安装
快速开始
# 安装 uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# 设置环境变量
export SERVICE_ACCOUNT_PATH="/path/to/your/service-account-key.json"
export DRIVE_FOLDER_ID="YOUR_DRIVE_FOLDER_ID"
# 运行服务器
uvx mcp-google-sheets@latestClaude Desktop 配置
添加到 Claude Desktop 的 config.json:
{
"mcpServers": {
"google-sheets": {
"command": "uvx",
"args": ["mcp-google-sheets@latest"],
"env": {
"SERVICE_ACCOUNT_PATH": "/path/to/credentials.json"
}
}
}
}对于工具过滤:
{
"mcpServers": {
"google-sheets": {
"command": "uvx",
"args": ["mcp-google-sheets@latest", "--include-tools", "get_sheet_data,update_cells,list_spreadsheets"],
"env": {
"SERVICE_ACCOUNT_PATH": "/path/to/credentials.json"
}
}
}
}