get_workbook_metadata
Retrieve detailed metadata about Excel workbooks, including sheet names and optional range details, using the xlwings Excel MCP Server for secure and efficient workbook analysis.
Instructions
Get metadata about workbook including sheets, ranges, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
include_ranges | No |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"include_ranges": {
"default": false,
"title": "Include Ranges",
"type": "boolean"
}
},
"required": [
"filepath"
],
"title": "get_workbook_metadataArguments",
"type": "object"
}