Skip to content
LangChain

cron pilot for LangChain

io.github.therealmrfunguy/cron-pilot

Scheduled HTTP requests and shell commands with retries, timeouts, and webhook alerts.

client:LangChain transport:sse

Install cron pilot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cron-pilot": {
            "transport": "streamable_http",
            "url": "https://cron.rjctdlabs.xyz/sse",
        }
})

tools = await client.get_tools()

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

cron pilot in other clients