Skip to main content

Excel Tools MCP

Excel Tools MCP is a standalone Model Context Protocol server for reading and inspecting local Excel files. It is designed for AI assistants that need a compact, structured view of spreadsheets without loading an entire workbook into context.

The project supports two distribution paths:

  • npm / npx: a Node.js launcher starts the Python MCP server.
  • PyPI / uvx / pip: run the Python MCP server directly.

Only local file paths are supported.

Version Status

Published v0.1.0

The first published release supports .xlsx files through openpyxl.

Available tools:

  • excel_inspect: inspect workbook metadata and sheet dimensions.
  • excel_read_range: read a rectangular cell range.
  • excel_profile_structure: summarize row structure patterns.

Known boundary:

  • .xls is not supported in v0.1.0.

Published v0.1.1

New and changed behavior:

  • Read-only tools support .xlsx, .xlsm, .xls, .xlsb, and .ods.
  • .xlsx and .xlsm are read with openpyxl.
  • .xls, .xlsb, and .ods are read with python-calamine.
  • excel_read_range_normalized reads a range and virtually fills merged cells from their anchor values without modifying the file.

Available tools in v0.1.1:

  • excel_inspect: inspect workbook metadata and sheet dimensions.
  • excel_read_range_normalized: read a rectangular range, analyze merged cells, and optionally return anchor-filled data.
  • excel_profile_structure: summarize row structure patterns and merged-cell structure.

Run With npx

This is the easiest route for MCP clients that already support Node-based server launch commands.

{
  "mcpServers": {
    "excel-tools-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["--yes", "@wasziyang/excel-tools-mcp"]
    }
  }
}

Requirements:

  • Node.js 20+
  • Python 3.10+

The npm package is a launcher. It creates or reuses a cached Python environment, installs the Python MCP server, and starts it over stdio.

Terminal test:

npx --yes @wasziyang/excel-tools-mcp

The command may appear to do nothing. That is normal for an MCP stdio server: it waits for the MCP host to send JSON-RPC messages over stdin.

Custom Python Path

By default, the launcher searches for python3, then python.

Set EXCEL_TOOLS_MCP_PYTHON only when Python is installed somewhere unusual:

{
  "mcpServers": {
    "excel-tools-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["--yes", "@wasziyang/excel-tools-mcp"],
      "env": {
        "EXCEL_TOOLS_MCP_PYTHON": "/absolute/path/to/python"
      }
    }
  }
}

Run With PyPI / uvx

Users with uv can run the PyPI package directly:

{
  "mcpServers": {
    "excel-tools-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "--from",
        "excel-tools-mcp",
        "excel-tools-mcp"
      ]
    }
  }
}

Terminal test:

uvx --from excel-tools-mcp excel-tools-mcp

You can also install it with pip:

pip install excel-tools-mcp
excel-tools-mcp

Runtime difference:

npx -> npm package -> Node launcher -> Python MCP server
uvx -> PyPI package -> Python MCP server
pip -> PyPI package -> Python MCP server

Local Development

Install from the local checkout:

pip install -e .
excel-tools-mcp

Or run the module directly:

python3 -m excel_tools.server

For a local npx-style test:

npm start

Tool Arguments Example

{
  "file_path": "/absolute/path/to/report.xlsx",
  "sheet": "Sheet1",
  "start_cell": "A1",
  "end_cell": "D20"
}

For Windows paths:

{
  "file_path": "C:\\Users\\Alice\\Documents\\report.xlsx",
  "sheet": "Sheet1",
  "start_cell": "A1",
  "end_cell": "D20"
}

Windows, WSL, and VS Code

If your mcp.json lives under a Windows path such as:

C:\Users\<you>\AppData\Roaming\Code\User\mcp.json

VS Code usually starts the MCP server from Windows, not from WSL. In that case Windows must have Node.js and Python installed, and Excel file paths should be Windows paths.

If you want VS Code on Windows to run the server inside WSL, call wsl explicitly:

{
  "mcpServers": {
    "excel-tools-mcp": {
      "type": "stdio",
      "command": "wsl",
      "args": [
        "bash",
        "-lc",
        "npx --yes @wasziyang/excel-tools-mcp"
      ]
    }
  }
}

When the server runs in WSL, use Linux/WSL paths:

{
  "file_path": "/mnt/c/Users/Alice/Documents/report.xlsx",
  "sheet": "Sheet1",
  "start_cell": "A1",
  "end_cell": "D20"
}

Docker

Build locally:

docker build -t excel-tools-mcp .

MCP client config example:

{
  "command": "docker",
  "args": [
    "run",
    "-i",
    "--rm",
    "-v",
    "/absolute/path/to/excel/files:/workspace",
    "excel-tools-mcp"
  ]
}

Inside Docker, pass file paths under /workspace, for example /workspace/report.xlsx.

Docker images are not published yet.

Publishing Notes

Release checklist:

  • Update versions in pyproject.toml, package.json, and the npm launcher cache directory.
  • Build and publish the Python package to PyPI.
  • Publish the npm launcher if the npx route should install the new version.

Basic npm publish flow:

npm login
npm publish --access public

Basic PyPI publish flow:

uv build
python3 -m twine upload dist/*

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

excel_tools_mcp-0.1.3.tar.gz (27.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

excel_tools_mcp-0.1.3-py3-none-any.whl (32.0 kB view details)

Uploaded Python 3

File details

Details for the file excel_tools_mcp-0.1.3.tar.gz.

File metadata

  • Download URL: excel_tools_mcp-0.1.3.tar.gz
  • Upload date:
  • Size: 27.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for excel_tools_mcp-0.1.3.tar.gz
Algorithm Hash digest
SHA256 b6a437cb29d8ff4eee73a23125b99968da54b598c67c92d103f218521584bea5
MD5 70469e176de005837eb49fcf971b923a
BLAKE2b-256 a5e6915693864a77b0eb6f0b8f1a3648ab5a1498445dd223c530aa29e88a2179

See more details on using hashes here.

File details

Details for the file excel_tools_mcp-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for excel_tools_mcp-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 bb013b4d9aea31d6823c0813ba2f2f3f9a4760606863aecb802e56f92c0a96a8
MD5 b9ee2db534c4134be7b6e82ef39ad4ca
BLAKE2b-256 5e63781a1c8e3aea6d15a859150684817fd8c342e036e9051b8d1abf2584259b

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.3 This release

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page