Skip to content
LangChain

telegram mcp for LangChain

io.github.shreyas-profile/telegram-mcp

Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.

client:LangChain transport:streamable-http

Install telegram mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "telegram-mcp": {
            "transport": "streamable_http",
            "url": "https://telegram.regiq.in/api/mcp",
        }
})

tools = await client.get_tools()

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

telegram mcp in other clients