convert_markdown_to_word_doc
Export a markdown document as a downloadable Word (.docx) file. Returns a download URL.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
markdown_content | string | Yes | — | Markdown content to convert |
filename | string | No | — | Filename without extension |
document_url | string | No | — | URL for footer link back to original document |
Input Schema
{
"type": "object",
"required": [
"markdown_content"
],
"properties": {
"filename": {
"type": "string",
"description": "Filename without extension"
},
"document_url": {
"type": "string",
"description": "URL to embed as footer link to original document"
},
"markdown_content": {
"type": "string",
"description": "Markdown content to convert"
}
}
}Output Schema
{
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "Filename of the generated Word document"
},
"download_url": {
"type": "string",
"description": "URL to download the generated .docx Word document"
}
}
}Instructions
Use this tool to export a markdown document as a downloadable Word (.docx) file.
Workflow:
- Use
get_deliverableto retrieve the document content (markdown). - Pass the
markdown_contentto this tool. - Optionally provide a
filename(without extension). - Optionally provide
document_urlto embed a footer link back to the original MarketCore document. - Returns a download URL for the .docx file.
Useful when users need Microsoft Word or Google Docs compatible format.