Mdkit
online.mdkit/mdkitDocument-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Tools · 3
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 ``markdow…
Submit a document for asynchronous, high-fidelity conversion (docling). Stores the uploaded bytes, then enqueues a ``convert.docling`` job (costs 10 credits, charged now). Returns ``{job_id, status, …
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 fo…
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"mdkit": {
"url": "https://api.mdkit.online/mcp/",
"transport": "streamable-http"
}
}
}