Skip to content
LangChain

Jade Note for LangChain

app.jadenote/jade-note

MCP-native notes and memory for ChatGPT, Claude, and other AI tools.

client:LangChain transport:streamable-http

Install Jade Note in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "jade-note": {
            "transport": "streamable_http",
            "url": "https://api.jadenote.app/mcp",
        }
})

tools = await client.get_tools()

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

Jade Note in other clients