Skip to content
LangChain

Cosmonote for LangChain

ai.cosmonote/notes

Access your Cosmonote audio notes, transcriptions, summaries, and action items.

client:LangChain transport:streamable-http

Install Cosmonote in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "notes": {
            "transport": "streamable_http",
            "url": "https://nebula.cosmonote.ai/mcp",
        }
})

tools = await client.get_tools()

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

Cosmonote in other clients