Skip to content
LangChain

PDFCrowd PDF Export for LangChain

io.github.pdfcrowd/pdfcrowd-mcp-pdf-export

Create polished, professional PDFs from a single prompt. Documentation, reports, charts, and more.

client:LangChain transport:stdio runtime:npm

Install PDFCrowd PDF Export in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pdfcrowd-mcp-pdf-export": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "pdfcrowd-mcp-pdf-export"],
        }
})

tools = await client.get_tools()

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

PDFCrowd PDF Export in other clients