Skip to content
LangChain

telegram notify mcp for LangChain

io.github.parthjadhav/telegram-notify-mcp

Send Telegram notifications from AI agents — text, photos, and documents.

client:LangChain transport:stdio runtime:npm

Install telegram notify mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "telegram-notify-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@parthj/telegram-notify-mcp"],
        }
})

tools = await client.get_tools()

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

telegram notify mcp in other clients