← WebMCP Directory

Tool tree

giantmarkdown.com

liveDeveloper Tools
https://www.giantmarkdown.com/
Convert PDFs, Word files, PowerPoint and Excel documents into clean Markdown online. Most PDFs run privately in your browser.
Explore capabilities
convert_document_to_markdownAction

Convert a supported document supplied as base64 into Markdown. The document is processed privately in the browser when possible, otherwise GiantMarkdown securely uploads it for conversion and deletes the cloud job afterward.

View tool JSON
{
  "name": "convert_document_to_markdown",
  "kind": "act",
  "impl": "imperative",
  "description": "Convert a supported document supplied as base64 into Markdown. The document is processed privately in the browser when possible, otherwise GiantMarkdown securely uploads it for conversion and deletes the cloud job afterward.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "filename": {
        "type": "string",
        "minLength": 1,
        "description": "Document filename including its supported extension."
      },
      "content_base64": {
        "type": "string",
        "minLength": 1,
        "description": "Raw base64 document bytes without a data URL prefix."
      },
      "content_type": {
        "type": "string",
        "minLength": 1,
        "description": "Optional MIME type, such as application/pdf."
      }
    },
    "required": [
      "filename",
      "content_base64"
    ],
    "additionalProperties": false
  }
}