Skip to content
LangChain

Useful Utilities for LangChain

io.github.aksp200/useful-utilities

63 tools an LLM can't do alone, in focused subsets: file edits, live data, real checksums.

client:LangChain transport:streamable-http

Install Useful Utilities in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "useful-utilities": {
            "transport": "streamable_http",
            "url": "https://mcp.usefulutils.in/mcp",
        }
})

tools = await client.get_tools()

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

Useful Utilities in other clients