Skip to content
LangChain

mcp apple notes for LangChain

io.github.henilcalagiya/mcp-apple-notes

MCP server for Apple Notes integration using AppleScript with full CRUD operations

client:LangChain transport:stdio runtime:pypi

Install mcp apple notes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-apple-notes": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["mcp-apple-notes"],
        }
})

tools = await client.get_tools()

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

mcp apple notes in other clients