Skip to content
LangChain

xNotepad AI for LangChain

com.xnotepadai/notes

Create, search, and update notes in an xNotepad AI notebook, with semantic search and AI Q&A.

client:LangChain transport:streamable-http

Install xNotepad AI in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "notes": {
            "transport": "streamable_http",
            "url": "https://www.xnotepadai.com/api/mcp/",
        }
})

tools = await client.get_tools()

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

xNotepad AI in other clients