Skip to content
LangChain

Form5500 for LangChain

io.github.pipeworx-io/form5500

Form 5500 MCP — wraps the U.S. DOL/EBSA EFAST2 Form 5500 Search service

client:LangChain transport:streamable-http

Install Form5500 in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "form5500": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/form5500/mcp",
        }
})

tools = await client.get_tools()

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

Form5500 in other clients