Skip to content
LangChain

mfgcalcs for LangChain

com.mfgcalcs/mfgcalcs

5,400+ manufacturing calculators plus live U.S. tariff, PMI, cost-index, wage, and forecast data.

client:LangChain transport:streamable-http

Install mfgcalcs in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mfgcalcs in other clients