Skip to content
LangChain

cloudtime API for LangChain

io.github.julysoft/cloudtime

MCP server providing attendance data queries via the CloudTime API.

client:LangChain transport:streamable-http

Install cloudtime API in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cloudtime": {
            "transport": "streamable_http",
            "url": "https://cloudtime-api.zktecoiot.com/api/v1.0/agent/mcp",
        }
})

tools = await client.get_tools()

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

cloudtime API in other clients