Excel-MCP-Server-Master vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
Excel-MCP-Server-Master by guillehr2 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 41 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
Excel-MCP-Server-Master · 概述
一个无需Microsoft Excel即可操作Excel文件的完整MCP服务器,支持完整的CRUD操作、图表创建和Claude AI集成。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
Excel-MCP-Server-Master · 使用场景
- 使用AI辅助自动化Excel报告和数据分析工作流
- 从各种数据源创建带有图表和表格的格式化Excel报告
- 无需Excel构建包含多种可视化的执行仪表板
- 在Excel和其他数据格式之间转换以实现数据处理流程
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
Excel-MCP-Server-Master · 安装
安装
使用Excel MCP Server最简单的方法是通过npx(无需安装):
npx @guillehr2/excel-mcp-server@latest或者全局安装:
npm install -g @guillehr2/excel-mcp-server配置
添加到您的MCP客户端配置(例如Claude Desktop):
{
"mcpServers": {
"excel-master": {
"command": "npx",
"args": [
"-y",
"@guillehr2/excel-mcp-server@latest"
]
}
}
}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 中安装。