Skip to content
LangChain

Pingfyr for LangChain

com.pingfyr/pingfyr

Schedule reminders for AI agents via email, webhook, Slack, Discord, Telegram, or Google Calendar.

client:LangChain transport:streamable-http

Install Pingfyr in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pingfyr": {
            "transport": "streamable_http",
            "url": "https://mcp.pingfyr.com/mcp?apiKey={apiKey}",
        }
})

tools = await client.get_tools()

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

Pingfyr in other clients