Excel MCP Server

Productivitystdiossehttp-streaming
Репозиторий

MCP server for reading and writing Excel workbooks without needing Microsoft Excel installed. Lets AI agents create workbooks and worksheets, read and write cell ranges, apply formulas and formatting, and build charts and pivot tables programmatically. Useful for automating spreadsheet generation, reporting, and data entry from an assistant.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

Подключение:
{
  "mcpServers": {
    "excel": {
      "command": "uvx",
      "args": [
        "excel-mcp-server",
        "stdio"
      ]
    }
  }
}

Инструменты (3)

read_data_from_excel

Read cell values from a range in an Excel worksheet.

{
  "type": "object",
  "required": [
    "filepath",
    "sheet_name"
  ],
  "properties": {
    "filepath": {
      "type": "string",
      "description": "Path to the Excel workbook"
    },
    "cell_range": {
      "type": "string",
      "description": "Range to read (e.g. A1:D20)"
    },
    "sheet_name": {
      "type": "string",
      "description": "Name of the worksheet"
    }
  }
}

write_data_to_excel

Write values to a range in an Excel worksheet, creating the file if needed.

{
  "type": "object",
  "required": [
    "filepath",
    "sheet_name",
    "data"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "array"
      },
      "description": "Two-dimensional array of values to write"
    },
    "filepath": {
      "type": "string",
      "description": "Path to the Excel workbook"
    },
    "sheet_name": {
      "type": "string",
      "description": "Name of the worksheet"
    }
  }
}

apply_formula

Apply an Excel formula to a specific cell.

{
  "type": "object",
  "required": [
    "filepath",
    "sheet_name",
    "cell",
    "formula"
  ],
  "properties": {
    "cell": {
      "type": "string",
      "description": "Target cell (e.g. E2)"
    },
    "formula": {
      "type": "string",
      "description": "Excel formula to apply (e.g. =SUM(A2:D2))"
    },
    "filepath": {
      "type": "string",
      "description": "Path to the Excel workbook"
    },
    "sheet_name": {
      "type": "string",
      "description": "Name of the worksheet"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Haris Musa (@haris-musa)
Репозиторий
https://github.com/haris-musa/excel-mcp-server
Звёзды
0
Последнее обновление
12 июля 2026 г.