The Excel MCP Server provides tools for reading and writing data in Microsoft Excel files (xlsx, xlsm, xltx, xltm formats) through a standardized interface. It offers capabilities to read/write cell values and formulas, create new sheets, and retrieve sheet metadata, with additional Windows-only features for live editing and capturing sheet screenshots. This server enables AI assistants to programmatically interact with Excel workbooks without requiring direct file system access or application integration.
A Model Context Protocol (MCP) server that reads and writes MS Excel data.
🪟Windows only:
For more details, see the tools section.
excel-mcp-server is automatically installed by adding the following configuration to the MCP servers configuration.
For Windows:
{
"mcpServers": {
"excel": {
"command": "cmd",
"args": ["/c", "npx", "--yes", "@negokaz/excel-mcp-server"],
"env": {
"EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
}
}
}
}
For other platforms:
{
"mcpServers": {
"excel": {
"command": "npx",
"args": ["--yes", "@negokaz/excel-mcp-server"],
"env": {
"EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
}
}
}
}
To install Excel MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @negokaz/excel-mcp-server --client claude
excel_describe_sheetsList all sheet information of specified Excel file.
Arguments:
fileAbsolutePath
excel_read_sheetRead values from Excel sheet with pagination.
Arguments:
fileAbsolutePath
sheetName
range
showFormula
showStyle
excel_screen_capture[Windows only] Take a screenshot of the Excel sheet with pagination.
Arguments:
fileAbsolutePath
sheetName
range
excel_write_to_sheetWrite values to the Excel sheet.
Arguments:
fileAbsolutePath
sheetName
newSheet
range
values
excel_create_tableCreate a table in the Excel sheet
Arguments:
fileAbsolutePath
sheetName
range
tableName
excel_copy_sheetCopy existing sheet to a new sheet
Arguments:
fileAbsolutePath
srcSheetName
dstSheetName
excel_format_rangeFormat cells in the Excel sheet with style information
Arguments:
fileAbsolutePath
sheetName
range
styles
border: Array of border styles (type, color, style)font: Font styling (bold, italic, underline, size, strike, color, vertAlign)fill: Fill/background styling (type, pattern, color, shading)numFmt: Custom number format stringdecimalPlaces: Number of decimal places (0-30)You can change the MCP Server behaviors by the following environment variables:
EXCEL_MCP_PAGING_CELLS_LIMITThe maximum number of cells to read in a single paging operation.
[default: 4000]
Copyright (c) 2025 Kazuki Negoro
excel-mcp-server is released under the MIT License
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json