A Model Context Protocol (MCP) server that reads and writes MS Excel data
Most developer tooling work still happens through a UI a human drives. Excel MCP server moves it into the conversation instead. A Model Context Protocol (MCP) server that reads and writes MS Excel data.
The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
The server publishes 14 tools. What each one is for:
fileAbsolutePath — Absolute path to the Excel filesheetName — Sheet name in the Excel filerange — Range of cells to read in the Excel sheet (e.g., "A1:C10"). [default: first paging range]showFormula — Show formula instead of value [default: false]showStyle — Show style information for cells [default: false]newSheet — Create a new sheet if true, otherwise write to the existing sheetvalues — Values to write to the Excel sheet. If the value is a formula, it should start with "="tableName — Table name to be createdsrcSheetName — Source sheet name in the Excel filedstSheetName — Sheet name to be copiedstyles — 2D array of style objects for each cell. If a cell does not change style, use null. The number of items of the array must match the range sizeborder — Array of border styles (type, color, style)Configuration is passed through the environment: EXCEL_MCP_PAGING_CELLS_LIMIT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Excel's toolset — fileAbsolutePath, sheetName, range and 11 more — is a fair guide to whether it matches your workflow. It is maintained by negokaz; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| fileAbsolutePath | Absolute path to the Excel file |
| sheetName | Sheet name in the Excel file |
| range | Range of cells to read in the Excel sheet (e.g., "A1:C10"). [default: first paging range] |
| showFormula | Show formula instead of value [default: false] |
| showStyle | Show style information for cells [default: false] |
| newSheet | Create a new sheet if true, otherwise write to the existing sheet |
| values | Values to write to the Excel sheet. If the value is a formula, it should start with "=" |
| tableName | Table name to be created |
| srcSheetName | Source sheet name in the Excel file |
| dstSheetName | Sheet name to be copied |
| styles | 2D array of style objects for each cell. If a cell does not change style, use null. The number of items of the array must match the range size. |
| 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) |
{
"mcpServers": {
"excel": {
"command": "cmd",
"args": ["/c", "npx", "--yes", "@negokaz/excel-mcp-server"],
"env": {
"EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| EXCEL_MCP_PAGING_CELLS_LIMIT | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.