Excel-MCP-Server-Master vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Excel-MCP-Server-Master by guillehr2 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"
]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.