Skip to content
LangChain

AddCal for LangChain

co.addcal/addcal

Publish public calendars and events others subscribe to: RSVPs, feeds and add-to-calendar links.

client:LangChain transport:streamable-http

Install AddCal in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "addcal": {
            "transport": "streamable_http",
            "url": "https://addcal.co/mcp",
        }
})

tools = await client.get_tools()

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

AddCal in other clients