Skip to content
LangChain

notion for LangChain

com.mcparmory/notion

Create, update, and manage pages, databases, and workspace users

client:LangChain transport:stdio runtime:pypi

Install notion in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "notion": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["mcparmory-notion"],
        }
})

tools = await client.get_tools()

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

notion in other clients