TimeZest for LangChain
io.github.wyre-technology/timezest-mcp
MCP server for TimeZest — appointment scheduling, agents, appointment types, and resources for MSPs.
client:LangChain
transport:stdio
runtime:oci
Install TimeZest in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"timezest-mcp": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/wyre-technology/timezest-mcp:v1.2.6"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs