Submit

PDF To Markdown

@Dmitry Petrakov

A hosted MCP server that turns PDFs into clean, LLM-ready Markdown, so AI agents can convert documents as a built-in tool: real Markdown tables, formulas as LaTeX, and OCR for scans. The same engine is also a REST API, a web app, a Chrome extension and a ChatGPT Custom GPT. It runs its own engines (MinerU + Docling), not an LLM wrapper. Connect at https://pdf2md.dev/api/v2/mcp with a Bearer API key; docs at https://pdf2md.dev/developers/#mcp
Overview

PDF to Markdown – hosted MCP

A hosted MCP server that turns PDFs into clean, LLM-ready Markdown, so AI agents can convert documents as a built-in tool. Output keeps real Markdown tables, formulas as LaTeX, and OCR for scanned pages, with reading order intact. It runs its own document engines (open-source MinerU and Docling), not an LLM wrapper.

Connect

JSON-RPC 2.0 over Streamable HTTP, with a Bearer API key (a free Google account generates one).

{
  "mcpServers": {
    "pdf2md": {
      "url": "https://pdf2md.dev/api/v2/mcp",
      "headers": { "Authorization": "Bearer p2m_YOUR_API_KEY" }
    }
  }
}

Tools (prefixed pdf_to_markdown_)

  • create_job_from_url / create_job_from_upload – start a conversion
  • get_job / list_jobs – poll status
  • get_markdown – fetch the Markdown once ready
  • delete_job – free a slot
  • get_limits – tier limits and usage

Notes

Server Config

{
  "mcpServers": {
    "pdf2md": {
      "url": "https://pdf2md.dev/api/v2/mcp",
      "headers": {
        "Authorization": "Bearer p2m_YOUR_API_KEY"
      }
    }
  }
}
© 2025 MCP.so. All rights reserved.

Build with ShipAny.

- MCP Server