MCP Tools
Deliverables

convert_markdown_to_word_doc

Export a markdown document as a downloadable Word (.docx) file. Returns a download URL.

Parameters

NameTypeRequiredDefaultDescription
markdown_contentstringYesMarkdown content to convert
filenamestringNoFilename without extension
document_urlstringNoURL 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:

  1. Use get_deliverable to retrieve the document content (markdown).
  2. Pass the markdown_content to this tool.
  3. Optionally provide a filename (without extension).
  4. Optionally provide document_url to embed a footer link back to the original MarketCore document.
  5. Returns a download URL for the .docx file.

Useful when users need Microsoft Word or Google Docs compatible format.

Scroll to Top