Skip to content
LangChain

Kanbai — public project templates and SOPs for LangChain

app.kanbai/discovery

Read-only access to Kanbai's public project templates and SOPs. Public, no authentication.

client:LangChain transport:streamable-http tools:4

Install Kanbai — public project templates and SOPs in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "discovery": {
            "transport": "streamable_http",
            "url": "https://kanbai.app/api/mcp/public",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Kanbai — public project templates and SOPs in other clients