Skip to content
LangChain

mcp telegram bot for LangChain

io.github.daedalus/mcp-telegram-bot

MCP server that exposes a Telegram bot

client:LangChain transport:stdio runtime:pypi

Install mcp telegram bot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-telegram-bot": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["mcp-telegram-bot"],
        }
})

tools = await client.get_tools()

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

mcp telegram bot in other clients