Skip to content
LangChain

Mind the Product for LangChain

com.mindtheproduct/knowledge

Search 15 years of Mind the Product writing, talks and podcasts, plus live events and PM jobs.

client:LangChain transport:streamable-http

Install Mind the Product in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "knowledge": {
            "transport": "streamable_http",
            "url": "https://www.mindtheproduct.com/api/mcp/",
        }
})

tools = await client.get_tools()

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

Mind the Product in other clients