Skip to main content

A standalone MCP server for inspecting and editing Excel .xlsx files.

Project description

Excel Tools MCP

A standalone MCP server for inspecting and editing .xlsx files.

Tools

  • excel_inspect: inspect workbook metadata and sheet dimensions.
  • excel_read_range: read a rectangular cell range.
  • excel_profile_structure: summarize row structure patterns.
  • excel_unmerge_cells: unmerge intersecting merged cells and optionally fill values.

Only local file paths are supported. The old fileId server-side download flow has been removed.

Run With npx

MCP client config:

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

The npm package is a launcher. On first run it creates a Python virtual environment under the user's cache directory, installs the bundled Python MCP server, and starts it over stdio.

Requirements:

  • Node.js 20+
  • Python 3.10+

Test from a terminal:

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.

Only set EXCEL_TOOLS_MCP_PYTHON when Python is installed somewhere unusual. Do not copy /path/to/python literally.

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

Examples:

EXCEL_TOOLS_MCP_PYTHON=/usr/bin/python3 npx --yes @wasziyang/excel-tools-mcp
$env:EXCEL_TOOLS_MCP_PYTHON = "C:\Users\Alice\AppData\Local\Programs\Python\Python312\python.exe"
npx --yes @wasziyang/excel-tools-mcp

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:

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

Example tool argument:

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

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"
}

Avoid setting cwd until the minimal config works. If you do set it, make sure it is valid in the same environment that runs the server.

Run With uvx

This project can also be distributed as a Python package on PyPI. After it is published to PyPI, users who have uv installed can run it with uvx:

{
  "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

uvx downloads the package from PyPI, creates an isolated cached environment, and runs the excel-tools-mcp console command declared in pyproject.toml.

Requirements:

  • uv
  • Python compatible with this package, currently Python 3.10+

The npm and uvx routes are equivalent at runtime: both eventually start the same Python MCP server. The difference is only the distribution layer:

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

Run With 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. The npm launcher is the recommended installation path for now.

Run As Python

pip install .
excel-tools-mcp

Or:

python3 -m excel_tools.server

Publishing To npm

To make npx --yes @wasziyang/excel-tools-mcp work for other users, the package name must exist on the npm registry.

Basic flow for this scoped public package:

npm login
npm publish --access public

Before publishing, check the current registry state:

npm view @wasziyang/excel-tools-mcp

If npm returns package metadata, the package already exists. If npm returns 404, publish it with npm publish --access public.

Publishing a new version requires a new semver value. npm does not allow overwriting an already published version:

npm version patch
npm publish --access public

Users who do not specify a version get the npm latest dist-tag:

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

That normally resolves to the newest published version tagged as latest.

Publishing To PyPI

Publish to PyPI if you want users to run:

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

Build and upload:

python3 -m pip install --upgrade build twine
python3 -m build
python3 -m twine upload dist/*

PyPI also does not allow overwriting an already published version. Before uploading a new release, update the version in pyproject.toml, for example:

version = "0.1.1"

If you publish both npm and PyPI packages, keep package.json and pyproject.toml versions aligned unless you intentionally release one distribution channel ahead of the other.

Docker Cache Pre-Warm

If a Docker image uses uvx to launch the PyPI package, you can pre-warm the uv cache at image build time so the container starts faster:

RUN uvx --from excel-tools-mcp excel-tools-mcp --help >/dev/null 2>&1 || true

That command downloads and installs the PyPI package into uv's cache during docker build. The || true keeps the build from failing if the command exits after printing help.

Project details


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.0.tar.gz (14.7 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.0-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for excel_tools_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f952e8bf21b410ca41613af00fc85d0ac8528e59ee06ad89666a547bcc130bdd
MD5 0691c3457bb49f7bebf7ed0d51c23005
BLAKE2b-256 b788248df9b622beb8756f3f226458487c903dd9dc64d7fb1740b060d5c34803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for excel_tools_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dce28783c3d73dd122570e33c372fd193f6aecc96234bda38994724777e4565c
MD5 cee41bfd44f73b6ec59d3124fab267c7
BLAKE2b-256 62699d0112742e745aa8210181867ff781d54e8d3f643a939cdcdf10efcd0ec3

See more details on using hashes here.

Supported by

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