Connection check
verified live · 26h ago
mdkit
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Tools
3
GitHub stars
—
Installs / wk
—
Licence
—
Transport
streamable-http
Last checked
26h ago
Tools & capabilities
3 toolsRead from the running server on 26h ago.
convert_document
filename*content_base64*
Convert a document to Markdown synchronously (the fast lane). Decode ``content_base64`` (the raw file bytes, base64-encoded) and run markitdown over it, returning ``{markdown, met… Convert a document to Markdown synchronously (the fast lane). Decode ``content_base64`` (the raw file bytes, base64-encoded) and run markitdown over it, returning ``{markdown, meta}`` where ``markdown`` is the converted text and ``meta`` carries the source ``filename`` and the output ``length`` in characters. Best for small office/HTML/text files; for large or complex documents (or OCR-heavy PDFs) use ``submit_conversion_job`` instead.
get_conversion_job
job_id*
Check the status of an asynchronous conversion job you submitted. Returns ``{job_id, status, ...}`` for one of YOUR jobs (scoped to the calling identity; another caller's job id i… Check the status of an asynchronous conversion job you submitted. Returns ``{job_id, status, ...}`` for one of YOUR jobs (scoped to the calling identity; another caller's job id is reported as not found). When the job has ``succeeded``, small results are inlined as ``markdown`` and larger ones are returned as a ``result_url`` to fetch. A ``failed`` job includes its ``error``.
submit_conversion_job
filename*webhook_urlcontent_base64*