Skip to content
LangChain

Reasoning Commons for LangChain

io.github.chenyuan35/reasoning-commons

AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.

client:LangChain transport:streamable-http

Install Reasoning Commons in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "reasoning-commons": {
            "transport": "streamable_http",
            "url": "https://aineedhelpfromotherai.com/api/mcp",
        }
})

tools = await client.get_tools()

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

Reasoning Commons in other clients