Excel MCP Server

Excel reading MCP with embedded image extraction — AI agents see text and images in xlsx files

Local serverstdioPython

What is the Excel MCP server?

If you already use Excel, the excel mcp server is the piece that lets your assistant work with it directly. Excel reading MCP with embedded image extraction — AI agents see text and images in xlsx files.

What the server does

Ask your assistant to review a requirements spec. Half the meaning lives in screenshots, flowcharts, and annotated diagrams pasted into cells — and every Excel MCP server hands the model text only. The answer comes back confident and incomplete, because the model never knew the pictures existed.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Cursor — The Cursor tool exposed by this server
  • list_sheets — List all sheets with dimensions, merged cell counts, and image totals. Use this first to understand a workbook's structure
  • read_excel_data — Read cell data from a specific sheet with pagination support
  • extract_images — Extract all embedded images from the workbook as base64 ImageContent
  • get_workbook_overview — Quick structural summary of a workbook — file size, sheet list, dimensions, image count
  • search_excel — Case-insensitive text search across all cells in the workbook
  • create_excel_file — The create_excel_file tool exposed by this server
  • add_excel_sheet — The add_excel_sheet tool exposed by this server
  • update_excel_cells — Set individual cells by coordinate. Values starting with = are written as formulas
  • write_excel_rows — The write_excel_rows tool exposed by this server
  • insert_excel_image — Insert a local image file into a workbook, anchored at a cell
  • format_excel_cells — Style a range: font, colors, borders, alignment, number formats. Only the attributes you pass are changed — existing styling is preserved

Credentials and setup notes

Configuration is passed through the environment: EXCEL_VISION_MCP_ALLOWED_DIRS. 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.

Installation

The server ships on PyPI as excel-vision-mcp, 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.

Where it fits

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 — Cursor, list_sheets, read_excel_data and 11 more — is a fair guide to whether it matches your workflow. It is maintained by VOYAGER-Inc; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Excel's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Excel.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
CursorThe Cursor tool exposed by this server.
list_sheetsList all sheets with dimensions, merged cell counts, and image totals. Use this first to understand a workbook's structure.
read_excel_dataRead cell data from a specific sheet with pagination support.
extract_imagesExtract all embedded images from the workbook as base64 ImageContent.
get_workbook_overviewQuick structural summary of a workbook — file size, sheet list, dimensions, image count.
search_excelCase-insensitive text search across all cells in the workbook.
create_excel_fileThe create_excel_file tool exposed by this server.
add_excel_sheetThe add_excel_sheet tool exposed by this server.
update_excel_cellsSet individual cells by coordinate. Values starting with = are written as formulas.
write_excel_rowsThe write_excel_rows tool exposed by this server.
insert_excel_imageInsert a local image file into a workbook, anchored at a cell.
format_excel_cellsStyle a range: font, colors, borders, alignment, number formats. Only the attributes you pass are changed — existing styling is preserved.
set_excel_column_widthsThe set_excel_column_widths tool exposed by this server.
ArchitectureThe Architecture tool exposed by this server.

How to install the Excel MCP server

{
  "mcpServers": {
    "excel-vision": {
      "command": "uvx",
      "args": ["excel-vision-mcp"],
      "env": {
        "EXCEL_VISION_MCP_ALLOWED_DIRS": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
EXCEL_VISION_MCP_ALLOWED_DIRSFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Excel to Cursor.
  • Use Excel to list sheets.
  • Use Excel to read excel data.

Frequently asked questions

It connects Excel to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Cursor, list_sheets, read_excel_data, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Excel directly.