Skip to main content

What is MCP?

The Model Context Protocol lets AI agents use external tools. PDFBase ships an MCP server that exposes PDF operations as tools agents can call.

Installation

Or add to your agent’s MCP config:

Available tools

The MCP server exposes all PDFBase API operations as agent-callable tools.

Phase 1 — Create

Phase 2 — Edit + Convert

Phase 3 — Extract

Tool examples

create_pdf

render_template

extract_structured

generate_thumbnail

Why MCP for PDFs?

AI agents frequently need to generate documents — invoices, reports, certificates, proposals. Without a tool, agents either:
  1. Generate markdown (not a PDF)
  2. Write HTML and tell the user to open it (bad UX)
  3. Call a complex API with no guidance (error-prone)
The MCP server wraps PDFBase’s API into agent-friendly tools with clear schemas, so agents can generate production-quality PDFs as naturally as they write text.

Agent workflow example

The agent doesn’t need to know HTML, CSS, or PDF internals. It fills in a template with structured data and gets a URL back.