MCP Excel Reader

read_excel

Read an Excel file and return its contents as structured data

Input Schema

NameRequiredDescriptionDefault
filePathYesPath to the Excel file to read
maxRowsNoMaximum number of rows to read (optional)
sheetNameNoName of the sheet to read (optional)
startRowNoStarting row index (optional)

Input Schema (JSON Schema)

{ "properties": { "filePath": { "description": "Path to the Excel file to read", "type": "string" }, "maxRows": { "description": "Maximum number of rows to read (optional)", "type": "number" }, "sheetName": { "description": "Name of the sheet to read (optional)", "type": "string" }, "startRow": { "description": "Starting row index (optional)", "type": "number" } }, "required": [ "filePath" ], "type": "object" }

You must be authenticated.

Other Tools