get_document_info
Extract structured document details by analyzing file paths, enabling efficient access to metadata and content insights for Word documents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}