PDF Text Extractor MCP avatar

PDF Text Extractor MCP

Pricing

from $0.01 / 1,000 results

Go to Apify Store
PDF Text Extractor MCP

PDF Text Extractor MCP

Extract text and metadata from PDF URLs for AI agents, RAG pipelines, research workflows, legal documents, reports, and knowledge-base ingestion.

Pricing

from $0.01 / 1,000 results

Rating

0.0

(0)

Developer

Jordan C

Jordan C

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

2 days ago

Last modified

Categories

Share

An Apify standby-mode MCP server that lets AI agents fetch PDF URLs, extract text, and inspect PDF metadata for RAG, search, summarization, and document-ingestion workflows.

MCP endpoint

  • POST /mcp

Tools

extract-pdf-text

Fetches a PDF URL and returns extracted text plus metadata.

Input:

{
"url": "https://example.com/document.pdf",
"maxLength": 50000
}

Output includes url, pages, info, text, length, and truncated.

get-pdf-metadata

Fetches a PDF URL and returns metadata without full extracted text.

Input:

{
"url": "https://example.com/document.pdf"
}

batch-extract-pdf-text

Extracts text from up to 5 PDF URLs in one call, charging once per URL.

Input:

{
"urls": ["https://example.com/document.pdf"],
"maxLengthPerPdf": 20000
}