read_excel
Extract data from Excel (xlsx) files into structured JSON format with a specified file path. Ideal for accessing workbook or sheet content programmatically.
Instructions
Read content from Excel (xlsx) files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the Excel file |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the Excel file",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}