Skip to main content

PDF.co MCP

PDF.co MCP Server provides PDF.co API functionality through the Model Context Protocol (MCP), enabling AI assistants to easily perform various PDF processing tasks.

🚀 Key Features

📄 PDF Conversion Tools

  • PDF → Various Formats: Convert PDFs to JSON, CSV, Text, Excel (XLS/XLSX), XML, HTML, Images (JPG/PNG/WebP/TIFF)
  • Various Formats → PDF: Convert documents (DOC/DOCX/RTF/TXT), spreadsheets (CSV/XLS/XLSX), images, web pages, HTML, emails (MSG/EML) to PDF
  • Excel Conversions: Convert Excel files to CSV, JSON, HTML, TXT, XML, PDF

🛠️ PDF Editing & Modification

  • PDF Merging: Combine multiple PDF files into one
  • PDF Splitting: Split PDFs by specific pages or page ranges
  • Add Annotations & Images: Add text, links, images, shapes to PDFs
  • Form Operations: Read PDF form field information, fill forms, create new form elements

🔍 PDF Search & Analysis

  • Text Search: Search text in PDFs (supports regular expressions)
  • Table Detection: Find table locations and coordinates in PDFs
  • AI Invoice Parser: Extract invoice data using AI
  • PDF Information: Get detailed information including metadata, page count, security info

🔒 Security & Accessibility

  • Password Protection: Add/remove password protection to PDFs
  • Searchability: Make PDFs searchable via OCR or remove text layers
  • Attachment Extraction: Extract attachments from PDFs

💼 File Management

  • File Upload: Upload local files to PDF.co servers
  • Job Status Tracking: Monitor progress and results of asynchronous operations

⚙️ Configuration

🔑 Get API Key

  1. Sign up at PDF.co website
  2. Get your API key from the dashboard

📦 Install UV

You need to install UV (a fast Python packaging tool) to use this MCP server:

macOS and Linux

curl -LsSf https://astral.sh/uv/install.sh | sh

Windows

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Alternative Installation Methods

  • Homebrew: brew install uv
  • PyPI with pipx: pipx install uv
  • PyPI with pip: pip install uv

For more installation options and details, see the UV installation guide.

MCP Server Setup

Cursor IDE Configuration

Add the following to your .cursor/mcp.json file:

{
  "mcpServers": {
    "pdfco": {
      "command": "uvx",
      "args": ["pdfco-mcp"],
      "env": {
        "X_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Claude Desktop Configuration

Add the following to your claude_desktop_config.json file:

{
  "mcpServers": {
    "pdfco": {
      "command": "uvx",
      "args": ["pdfco-mcp"],
      "env": {
        "X_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

🔧 Available Tools

PDF Conversion Tools

  • pdf_to_json: Convert PDF and scanned images into JSON representation with text, fonts, images, vectors, and formatting preserved
  • pdf_to_csv: Convert PDF and scanned images into CSV representation with layout, columns, rows, and tables
  • pdf_to_text: Convert PDF and scanned images to text with layout preserved
  • pdf_to_xls: Convert PDF and scanned images to XLS (Excel 97-2003) format
  • pdf_to_xlsx: Convert PDF and scanned images to XLSX (Excel 2007+) format
  • pdf_to_xml: Convert PDF and scanned images to XML format
  • pdf_to_html: Convert PDF and scanned images to HTML format
  • pdf_to_image: Convert PDF and scanned images to various image formats (JPG, PNG, WebP, TIFF)

Document to PDF Conversion Tools

  • document_to_pdf: Convert various document types (DOC, DOCX, RTF, TXT, XLS, XLSX, CSV, HTML, JPG, PNG, TIFF, WEBP) into PDF
  • csv_to_pdf: Convert CSV or spreadsheet files (XLS, XLSX) to PDF
  • image_to_pdf: Convert various image formats (JPG, PNG, TIFF) to PDF
  • webpage_to_pdf: Convert external webpage URL to PDF
  • html_to_pdf: Convert HTML to PDF
  • email_to_pdf: Convert email to PDF

Excel Conversion Tools

  • excel_to_csv: Convert Excel(XLS, XLSX) to CSV
  • excel_to_json: Convert Excel(XLS, XLSX) to JSON
  • excel_to_html: Convert Excel(XLS, XLSX) to HTML
  • excel_to_txt: Convert Excel(XLS, XLSX) to TXT
  • excel_to_xml: Convert Excel(XLS, XLSX) to XML
  • excel_to_pdf: Convert Excel(XLS, XLSX) to PDF

PDF Editing Tools

  • pdf_add_annotations_images_fields: Add text, images, forms, other PDFs, fill forms, links to external sites and external PDF files. You can update or modify PDF and scanned PDF files
  • pdf_merge: Merge PDF from two or more PDF, DOC, XLS, images, even ZIP with documents and images into a new PDF
  • pdf_split: Split a PDF into multiple PDF files using page indexes or page ranges

PDF Form Tools

  • read_pdf_forms_info: Extracts information about fillable PDF fields from an input PDF file
  • fill_pdf_forms: Fill existing form fields in a PDF document
  • create_fillable_forms: Create new fillable form elements in a PDF document

PDF Search Tools

  • find_text: Find text in PDF and get coordinates. Supports regular expressions
  • find_table: Find tables in PDF and get their coordinates

PDF Analysis Tools

  • ai_invoice_parser: AI Invoice Parser: Extracts data from invoices using AI
  • extract_attachments: Extracts attachments from a source PDF file
  • pdf_info_reader: Get detailed information about a PDF document - number of pages, metadata, security, form fields, and more

PDF Security Tools

  • pdf_add_password: Add password protection to a PDF file
  • pdf_remove_password: Remove password protection from a PDF file

PDF Searchability Tools

  • pdf_make_searchable: Convert scanned PDF documents or image files into a text-searchable PDF. Runs OCR and adds an invisible text layer that can be used for text search
  • pdf_make_unsearchable: Make existing PDF document non-searchable by removing the text layer from it

File Management Tools

  • upload_file: Upload a file to the PDF.co API
  • get_job_check: Check the status and results of a job. Status can be: working, success, failed, aborted, or unknown
  • wait_job_completion: Wait for a job to complete

📖 Usage Examples

Convert PDF to Text

Convert this PDF file to text: https://example.com/document.pdf

Merge Multiple Images into PDF

Create a PDF from these images: image1.jpg, image2.png, image3.jpg

Search for Specific Text in PDF

Find the word "contract" in this PDF document

Fill PDF Form Fields

Fill the name field in this PDF form with "John Doe"

Convert Web Page to PDF

Convert https://example.com webpage to PDF

Extract Invoice Data

Extract invoice information from this PDF using AI

Add Password Protection

Add password protection to this PDF file

📞 Support & Contact

📄 License

This project is distributed under the MIT License.


Note: A valid PDF.co API key is required to use this tool. Create a free account at PDF.co to get your API key.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pdfco_mcp-0.0.9.tar.gz (52.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pdfco_mcp-0.0.9-py3-none-any.whl (26.0 kB view details)

Uploaded Python 3

File details

Details for the file pdfco_mcp-0.0.9.tar.gz.

File metadata

  • Download URL: pdfco_mcp-0.0.9.tar.gz
  • Upload date:
  • Size: 52.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.12

File hashes

Hashes for pdfco_mcp-0.0.9.tar.gz
Algorithm Hash digest
SHA256 6dad5dbd3e0c89df762003f7a58f69dbed2906b860bf87e72c27410d719a2dfd
MD5 db226d881e19e6dd39adcccdd5417dd7
BLAKE2b-256 20399cc1043cf91b70a89003188baca60a58bada8d6994c6d4e02cabdcdd444f

See more details on using hashes here.

File details

Details for the file pdfco_mcp-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: pdfco_mcp-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 26.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.12

File hashes

Hashes for pdfco_mcp-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 ba316b970bd6c4789588af2c4eb42c38b6f569761a3a86b8869df30ca73bbc3a
MD5 0765fa86bd921b4d3991b81c330b5de0
BLAKE2b-256 db62d372d22faa74f9ddcef561b0c18a8ddabbb77a58c9df4f7aea84bbb8e924

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.0.9 This release

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page