Skip to content
LangChain

PDFMakerAPI for LangChain

io.github.gerardobarrera/pdfmakerapi-mcp

Turn a description into a shareable, editable PDF — invoices, certificates, reports, resumes.

client:LangChain transport:streamable-http runtime:npm

Install PDFMakerAPI in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pdfmakerapi-mcp": {
            "transport": "streamable_http",
            "url": "https://api.pdfmakerapi.com/mcp",
        }
})

tools = await client.get_tools()

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

PDFMakerAPI in other clients