scheduling for LangChain
io.github.theluckystrike/scheduling
Meeting scheduling across time zones: slot finding, DST checks, .ics invites.
client:LangChain
transport:streamable-http
runtime:mcpb
tools:11
Install scheduling in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"scheduling": {
"transport": "streamable_http",
"url": "https://mcp.zovo.one/mcp/scheduling",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs