Skip to content
LangChain

tools for LangChain

com.freedailypro/tools

61 text, security, converter, calculator, and PDF tools -- callable via MCP on one host.

client:LangChain transport:streamable-http

Install tools in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tools": {
            "transport": "streamable_http",
            "url": "https://utility-api-production-ebf2.up.railway.app/mcp",
        }
})

tools = await client.get_tools()

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

tools in other clients