Skip to content
LangChain

Cherry Notes for LangChain

app.cherrynotes/cherry-notes

Tasks that outlive the chat. Capture features and tasks on your phone; your AI agent picks them up.

client:LangChain transport:streamable-http

Install Cherry Notes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cherry-notes": {
            "transport": "streamable_http",
            "url": "https://api.cherrynotes.app/mcp",
        }
})

tools = await client.get_tools()

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

Cherry Notes in other clients