parse_word
Extract text, tables, and images from Word documents using the MCP Development Framework’s parsing tool for efficient content analysis and retrieval.
Instructions
解析Word文档内容,提取文本、表格和图片信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Word文档的本地路径,例如'/path/to/document.docx' |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Word文档的本地路径,例如'/path/to/document.docx'",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}