docx-to-markdown
Convert DOCX files into Markdown format using the Markdownify MCP Server. Extract and transform content for easy readability and sharing in Markdown.
Instructions
Convert a DOCX file to markdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | Absolute path of the DOCX file to convert |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"description": "Absolute path of the DOCX file to convert",
"type": "string"
}
},
"required": [
"filepath"
],
"type": "object"
}