better notion for LangChain
io.github.ai-aviate/better-notion
Operate Notion with a single Markdown document — read, create, and update pages in one call.
client:LangChain
transport:stdio
runtime:npm
Install better notion in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"better-notion": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "better-mcp-notion"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs