Simple Document Processing MCP Server

excel_read

Read Excel file and convert to JSON format while preserving structure

Input Schema

NameRequiredDescriptionDefault
includeHeadersNoWhether to include headers in the output
inputPathYesPath to the input Excel file

Input Schema (JSON Schema)

{ "properties": { "includeHeaders": { "default": true, "description": "Whether to include headers in the output", "type": "boolean" }, "inputPath": { "description": "Path to the input Excel file", "type": "string" } }, "required": [ "inputPath" ], "type": "object" }