Skip to content
LangChain

Execute docdigest-mcp for LangChain

io.github.evozim/docdigest-mcp

Premium agentic endpoint for docdigest-mcp.

client:LangChain transport:sse

Install Execute docdigest-mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "docdigest-mcp": {
            "transport": "streamable_http",
            "url": "https://api.m2mcent.com/docdigest-mcp/sse",
        }
})

tools = await client.get_tools()

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

Execute docdigest-mcp in other clients