Skip to content
LangChain

Knowtis for LangChain

app.knowtis/knowtis

Create, search and manage Knowtis collaborative notes from AI assistants.

client:LangChain transport:streamable-http runtime:mcpb

Install Knowtis in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "knowtis": {
            "transport": "streamable_http",
            "url": "https://mcp.knowtis.app/mcp",
        }
})

tools = await client.get_tools()

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

Knowtis in other clients