Skip to content
LangChain

reef for LangChain

me.reefwith/reef

Shared, living memory for you and your people — coves your AI assistant can read and write.

client:LangChain transport:streamable-http

Install reef in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "reef": {
            "transport": "streamable_http",
            "url": "https://reefwith.me/mcp",
        }
})

tools = await client.get_tools()

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

reef in other clients