Skip to content
LangChain

digest mcp for LangChain

io.github.nexus-api-lab/digest-mcp

Exact hashing, base64/hex/URL encoding, JWT decoding and UUIDs for AI agents. No auth required.

client:LangChain transport:streamable-http

Install digest mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "digest-mcp": {
            "transport": "streamable_http",
            "url": "https://digest-mcp.dokasukadon.workers.dev/mcp",
        }
})

tools = await client.get_tools()

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

digest mcp in other clients