everything vs mcp-server-excel
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-server-excel by sbroenne | |
|---|---|---|
| Stars | ★ 85,748 | ★ 157 |
| 30天用量 | — | — |
| 综合分 | 77 | 50 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具效率工具AI / LLM 工具 |
| 实现语言 | TypeScript | C# |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-server-excel · 概述
通过COM API提供23个工具和214个操作的Excel自动化MCP服务器。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-server-excel · 使用场景
- 数据分析师通过AI助手自动执行重复性Excel工作流程
- 开发人员构建基于Excel的AI驱动数据解决方案
- 业务用户使用自然语言命令管理复杂的Excel工作簿
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-server-excel · 安装
安装选项
**VS Code扩展(推荐)** 从[VS Code市场](https://marketplace.visualstudio.com/items?itemName=sbroenne.excel-mcp)安装
**Claude Desktop** 从[最新版本](https://github.com/sbroenne/mcp-server-excel/releases/latest)下载.mcpb文件
**其他MCP客户端** 从发布页下载mcp-excel.exe并添加到PATH
Claude Desktop配置
添加到您的Claude Desktop配置文件(config.json):
{
"mcpServers": {
"excel": {
"command": "path/to/mcp-excel.exe",
"args": []
}
}
}**注意:**使用前请关闭所有Excel文件。服务器在自动化期间需要独占工作簿访问权限。