Excel-MCP-Server-Master vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Excel-MCP-Server-Master by guillehr2 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 11 mo ago | this month |
Excel-MCP-Server-Master · Summary
A comprehensive MCP server for manipulating Excel files without Microsoft Excel, with full CRUD operations, chart creation, and Claude AI integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Excel-MCP-Server-Master · Use cases
- Automating Excel reporting and data analysis workflows with AI assistance
- Creating formatted Excel reports with charts and tables from various data sources
- Building executive dashboards with multiple visualizations without Excel
- Converting between Excel and other data formats for data processing pipelines
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
Excel-MCP-Server-Master · Install
Installation
The easiest way to use Excel MCP Server is with npx (no installation required):
npx @guillehr2/excel-mcp-server@latestOr install globally:
npm install -g @guillehr2/excel-mcp-serverConfiguration
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"excel-master": {
"command": "npx",
"args": [
"-y",
"@guillehr2/excel-mcp-server@latest"
]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything