Hiel Excel
БесплатноНе проверенAn optimized Excel MCP server with 25+ tools for creating, reading, writing, formatting, and analyzing Excel files, including pivot tables and charts, without r
Описание
An optimized Excel MCP server with 25+ tools for creating, reading, writing, formatting, and analyzing Excel files, including pivot tables and charts, without requiring Microsoft Excel.
README
An optimized Excel MCP server that provides comprehensive Excel manipulation capabilities through a clean API. The server now includes 25+ powerful tools for advanced Excel operations including tables, pivot tables, advanced formatting, and data manipulation.
Overview
The hiel_excel_mcp server provides AI agents with extensive Excel manipulation capabilities while maintaining performance and reliability. All operations are designed to be non-blocking and thread-safe with intelligent caching for optimal performance.
Key Features
- 25+ Powerful Tools: Comprehensive Excel manipulation capabilities
- Advanced Features: Tables, pivot tables, advanced formatting, data analysis
- Performance Optimized: Thread-safe operations with intelligent workbook caching
- Backward Compatibility: All existing functionality preserved with aliases
- Multiple Transports: Supports stdio, SSE, and streamable HTTP protocols
- No Dependencies: Full Excel manipulation without requiring Microsoft Excel
Installation
Prerequisites
- Python 3.8+ (recommended 3.10+)
- pip (package installer for Python)
- openpyxl (Excel manipulation library)
Option 1: Install from PyPI (when published)
# Linux/macOS
pip3 install hiel-excel-mcp
# Windows
pip install hiel-excel-mcp
Option 2: Install from Source
# Clone the repository
git clone https://github.com/yourusername/hiel-excel-mcp.git
cd hiel-excel-mcp
# Linux/macOS
pip3 install -e .
# Windows
pip install -e .
Building and Running the Server
Option 1: Using Python Directly
Linux/macOS
# Run the server directly
python3 server.py
# Or with stdio transport
python3 -m hiel_excel_mcp stdio
# Or with HTTP transport
python3 -m hiel_excel_mcp streamable-http --host 0.0.0.0 --port 8017
Windows
# Run the server directly
python server.py
# Or with stdio transport
python -m hiel_excel_mcp stdio
# Or with HTTP transport
python -m hiel_excel_mcp streamable-http --host 0.0.0.0 --port 8017
Option 2: Using UVX (for improved performance)
UVX is a high-performance Python runtime that can significantly improve server performance.
Linux/macOS
# Install UVX
pip3 install uvx
# Run the server with UVX
uvx server.py
# Or with stdio transport
uvx -m hiel_excel_mcp stdio
# Or with HTTP transport
uvx -m hiel_excel_mcp streamable-http --host 0.0.0.0 --port 8017
Windows
Note: UVX may have limited support on Windows. Use Python directly if you encounter issues.
# Install UVX
pip install uvx
# Run the server with UVX
uvx server.py
Using with Claude Desktop
- Configure the
claude_desktop_config.jsonfile:
{
"mcpServers": {
"hiel-excel-mcp": {
"command": "python3", // Use "python" on Windows
"args": [
"server.py"
],
"disabled": false
}
}
}
- Place this file in your Claude Desktop configuration directory
- Restart Claude Desktop to load the MCP server
Available Tools
The Excel MCP server provides the following tools, organized by category:
Workbook Operations
workbook-create- Create a new Excel workbookworkbook-metadata- Get workbook metadata
Worksheet Operations
worksheet-create- Create new worksheetworksheet-delete- Delete a worksheet from workbook
Data Operations
data-read- Read data from worksheetdata-write- Write 2D array data to worksheetfind-replace- Find and replace text in worksheetfilter-apply- Apply filters to a data rangesort-range- Sort data by one or multiple columns
Cell Operations
cell-write- Write value to a single cellformula-apply- Apply a formula to a cellrange-merge- Merge cells in a rangerange-unmerge- Unmerge cells in a range
Formatting
format-range- Apply formatting to a cell rangeformat-conditional- Apply conditional formatting to a rangeformat-advanced- Apply advanced formatting (fonts, borders, fills, alignment, number formats)
Data Structure
table-create- Create an Excel table from a range with auto-filters and formattingpivot-create- Create a pivot table for data analysischart-create- Create a chart in Excelnamed-range-create- Create a named range for easy reference
Row and Column Operations
rows-insert- Insert rows at specified positionrows-delete- Delete rows at specified positioncolumns-insert- Insert columns at specified positioncolumns-delete- Delete columns at specified position
Data Validation and Protection
validation-add- Add data validation to a rangeprotection-add- Add protection to worksheet or range
Import/Export
io-export-csv- Export Excel data to CSVio-import-csv- Import CSV data to Excel
System
server-status- Get MCP server status and information
Usage Examples
Creating and Populating a Workbook
# Create a new workbook
result = await excel_mcp.call_tool("workbook-create", {"filepath": "sales_report.xlsx"})
# Write data to the workbook
data = [
["Product", "Q1", "Q2", "Q3", "Q4", "Total"],
["Product A", 100, 150, 120, 180, "=SUM(B2:E2)"],
["Product B", 200, 210, 190, 220, "=SUM(B3:E3)"],
["Product C", 150, 160, 140, 200, "=SUM(B4:E4)"]
]
result = await excel_mcp.call_tool("data-write", {
"filepath": "sales_report.xlsx",
"sheet_name": "Sales",
"data": data,
"start_cell": "A1"
})
Creating Tables and Formatting
# Create a table from the data range
result = await excel_mcp.call_tool("table-create", {
"filepath": "sales_report.xlsx",
"sheet_name": "Sales",
"range": "A1:F4",
"table_name": "SalesData",
"style": "TableStyleMedium2"
})
# Apply advanced formatting to the header row
result = await excel_mcp.call_tool("format-advanced", {
"filepath": "sales_report.xlsx",
"sheet_name": "Sales",
"range": "A1:F1",
"formatting": {
"font": {"bold": True, "color": "FFFFFF"},
"fill": {"color": "4472C4", "type": "solid"},
"alignment": {"horizontal": "center"}
}
})
Data Analysis with Pivot Tables
# Create a pivot table for analysis
result = await excel_mcp.call_tool("pivot-create", {
"filepath": "sales_report.xlsx",
"source_sheet": "Sales",
"source_range": "A1:F4",
"target_sheet": "Analysis",
"target_cell": "A1",
"rows": ["Product"],
"columns": [],
"values": [{"field": 5, "function": "sum"}],
"filters": []
})
Data Manipulation
# Sort data by Q4 sales (descending)
result = await excel_mcp.call_tool("sort-range", {
"filepath": "sales_report.xlsx",
"sheet_name": "Sales",
"range": "A2:F4",
"sort_by": [{"column": 4, "ascending": False}]
})
# Find and replace text
result = await excel_mcp.call_tool("find-replace", {
"filepath": "sales_report.xlsx",
"sheet_name": "Sales",
"find_text": "Product",
"replace_text": "Item",
"match_case": True
})
Protection and Named Ranges
# Create a named range for the totals column
result = await excel_mcp.call_tool("named-range-create", {
"filepath": "sales_report.xlsx",
"name": "Totals",
"sheet_name": "Sales",
"range": "F2:F4"
})
# Add protection to the worksheet
result = await excel_mcp.call_tool("protection-add", {
"filepath": "sales_report.xlsx",
"sheet_name": "Sales",
"password": "secure123",
"allow_formatting": True
})
Environment Variables
EXCEL_FILES_PATH: Base directory for Excel files (default: current directory)MAX_ROWS_PER_CALL: Maximum number of rows allowed per operation (default: 10000)MAX_COLS_PER_CALL: Maximum number of columns allowed per operation (default: 1000)MAX_FILE_SIZE: Maximum file size in bytes (default: 50MB)FASTMCP_HOST: Server host (default: 0.0.0.0)FASTMCP_PORT: Server port (default: 8017)
Development
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Format code
black hiel_excel_mcp/
isort hiel_excel_mcp/
# Type checking
mypy hiel_excel_mcp/
CI/CD Workflow
This project supports both GitHub Actions and GitLab CI/CD for continuous integration and deployment.
GitHub Actions
The GitHub workflow includes:
- Automated Testing: Tests run on multiple Python versions (3.8-3.11) and operating systems (Ubuntu, Windows)
- Code Quality Checks: Linting with flake8, formatting with black, import sorting with isort, and type checking with mypy
- Test Coverage: Coverage reports generated and uploaded to Codecov
- Package Building: Python package built and verified with twine
- Docker Image: Docker image built from the Dockerfile in the deploy directory
To run the workflow manually, go to the Actions tab in the GitHub repository and select "Run workflow" on the "Build and Test Excel MCP" workflow.
GitLab CI/CD
The GitLab pipeline includes:
- Staged Pipeline: Organized into lint, test, build, package, and docker stages
- Multiple Python Versions: Tests run on Python 3.8, 3.9, 3.10, and 3.11
- Code Quality: Separate jobs for flake8, black, isort, and mypy
- Artifacts: Test reports and built packages stored as artifacts
- Docker Build: Container image built from the Dockerfile in the deploy directory
- Caching: Dependency caching between jobs for faster builds
The pipeline automatically runs on all branches and can be viewed in the CI/CD section of your GitLab repository.
License
MIT License - see LICENSE file for details.
Установка Hiel Excel
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/serhabdel/hiel_excel_mcpFAQ
Hiel Excel MCP бесплатный?
Да, Hiel Excel MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Hiel Excel?
Нет, Hiel Excel работает без API-ключей и переменных окружения.
Hiel Excel — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Hiel Excel в Claude Desktop, Claude Code или Cursor?
Открой Hiel Excel на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Hiel Excel with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
