Skip to content
LangChain

Bigiron for LangChain

io.github.pipeworx-io/bigiron

BigIron MCP — US ag/construction/livestock/transportation equipment

client:LangChain transport:streamable-http

Install Bigiron in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Bigiron in other clients