| name | julien-mcp-excel |
| description | Install Excel MCP server via uvx. Use when user needs Excel file manipulation capabilities. |
| category | mcp |
| triggers | install excel mcp, excel automation, xlsx mcp |
MCP Excel Installer
This skill installs the Excel MCP server into the current project.
Installation Procedure
When the user asks to install Excel MCP:
- Check for existing
.mcp.jsonin the project root - Merge configuration - Add this server to
mcpServers:
{
"excel": {
"command": "uvx",
"args": ["excel-mcp-server", "stdio"]
}
}
- If
.mcp.jsondoesn't exist, create it with the full structure:
{
"mcpServers": {
"excel": {
"command": "uvx",
"args": ["excel-mcp-server", "stdio"]
}
}
}
Prerequisites
uvxmust be installed (comes withuv)
Usage After Installation
Restart Claude Code to activate the MCP server. Provides Excel file manipulation capabilities.
Example Usage
After installation, use in Claude Code:
"Read data from sheet1 of report.xlsx"
"Create a new Excel file with sales data"
Skill Chaining
- Input: User request to install Excel MCP
- Output: Configured
.mcp.jsonwith excel server - Tools Used: Read, Edit, Write
- Chains With: Excel win32com MCP for Windows-native features
Troubleshooting
| Problem | Solution |
|---|---|
uvx not found |
Install uv from astral.sh |
| Package not found | Run uv cache clean |
| File not found | Use absolute paths for Excel files |
| Permission denied | Check write permissions on output directory |