docx-open
Load a .docx file from disk into memory for editing or processing, returning a unique ID for further actions within the DOCX MCP Server.
Instructions
Open a .docx file from disk into memory and return id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}