Skip to content
LangChain

doc.page PDF Extraction for LangChain

page.doc/pdf-extract

Extract PDFs to Markdown, RAG chunks and cited tables; publish tracked Doc Links with read stats.

client:LangChain transport:streamable-http tools:7

Install doc.page PDF Extraction in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pdf-extract": {
            "transport": "streamable_http",
            "url": "https://doc.page/api/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

What LangChain can do once it is connected

doc.page PDF Extraction in other clients