Agentic AI

PDFox exposes a Model Context Protocol (MCP) server so LLM-powered agents can generate PDFs, inspect templates, and manage assets — all without a human in the loop.

What is MCP?

The Model Context Protocol is an open standard for giving AI assistants access to external tools. An MCP server exposes a set of typed functions; a compatible agent (Claude, Cursor, VS Code Copilot, etc.) calls them as it reasons about your request.

What PDFox exposes via MCP

ToolWhat it does
generate_pdfSubmit a PDF generation job and return the job ID
generate_pdf_and_waitSubmit and block until completed, returning the download URL
get_jobCheck the status of an existing job
list_templatesList all templates visible to the org
get_templateFetch full template details including schema
create_template_draftStart a new template draft for editing
update_template_draftUpdate an existing draft's HTML/CSS/config
preview_template_draftRender a draft with sample data
get_pdf_quotaReturn remaining credits
MCP is available on the Pro plan and above. The MCP server is disabled on free accounts.

How it works end-to-end

1
Connect your agent

Follow the Connect an agent guide to point your MCP-compatible client at PDFox.

2
Agent lists templates

The agent calls list_templates to discover available templates and their data schemas.

3
Agent generates a PDF

The agent maps your data to the template schema and calls generate_pdf_and_wait. It gets back a signed URL.

4
Agent returns the URL

Your agent can embed the URL in a response, save it, or pass it on to the next step in your workflow.

Next steps