Skip to content
LangChain

JustFill PDF Form Automation for LangChain

io.github.mrmaciej1/justfill-pdf-forms

Detect, review and fill existing PDF forms from JSON or Excel; reuse saved templates

client:LangChain transport:streamable-http runtime:pypi

Install JustFill PDF Form Automation in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "justfill-pdf-forms": {
            "transport": "streamable_http",
            "url": "https://api.justfill.app/api/mcp",
        }
})

tools = await client.get_tools()

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

JustFill PDF Form Automation in other clients