Excel Reader ServerServer

softgridinc-pte-ltd
GitHub
ExcelData ExtractionMCP

Loading subscription status...

๐Ÿ’ก Description

A Model Context Protocol (MCP) server that provides tools for reading and parsing Excel (.xlsx) files, enabling extraction of data from entire workbooks or specific sheets by name or index.

๐Ÿ“ JSON Entries

{
  "mcpServers": [
    {
      "Excel Reader Server": {
        "args": [
          {
            "file_path": "path/to/your/excel/file.xlsx"
          }
        ],
        "command": "read_excel"
      }
    },
    {
      "Excel Reader Server": {
        "args": [
          {
            "file_path": "path/to/your/excel/file.xlsx",
            "sheet_name": "Sheet1"
          }
        ],
        "command": "read_excel_by_sheet_name"
      }
    },
    {
      "Excel Reader Server": {
        "args": [
          {
            "file_path": "path/to/your/excel/file.xlsx",
            "sheet_index": 0
          }
        ],
        "command": "read_excel_by_sheet_index"
      }
    }
  ]
}

๐Ÿ› ๏ธ Tools

read_excelread_excel_by_sheet_nameread_excel_by_sheet_index

โšก Features

  • Read content from all sheets in an Excel file
  • Read content from a specific sheet by name
  • Read content from a specific sheet by index
  • Return data in JSON format
  • Handle empty cells and data type conversion

๐Ÿ’ฌ Example Queries

  • Read contents from all sheets in an Excel file
  • Read contents from a specific sheet by name
  • Read contents from a specific sheet by index