Add it to Claude Code
claude mcp add -e "BOT_TOKEN=${BOT_TOKEN}" aiogram-mcp -- python path/to/your/bot.pyBOT_TOKENMake your agent remember this setup
aiogram-mcp's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- 30 tools for messaging, rich media, moderation, and interactive keyboards
- 7 resources including chat lists, message history, and audit logs
- Real-time event streaming from Telegram to AI clients
- Built-in rate limiting to prevent Telegram 429 errors
- Permission levels for read-only, messaging, or admin access
Tools 8
send_messageSend text with HTML/Markdown formattingsend_photoSend a photo by URL with optional captionforward_messageForward a message between chatsdelete_messageDelete a messagepin_messagePin a message in a chatsend_interactive_messageSend a message with inline keyboard buttonsedit_messageEdit text and/or keyboard of an existing messageanswer_callback_queryRespond to a button press with a toastEnvironment Variables
BOT_TOKENrequiredThe Telegram Bot API token provided by BotFatherTry it
Original README from Py2755/aiogram-mcp
aiogram-mcp
Connect your Telegram bot to AI agents via the Model Context Protocol.
aiogram-mcp turns any aiogram bot into an MCP server. AI clients like Claude Desktop can then send messages, read chat history, build interactive menus, and react to events in real time — all through your existing bot, without rewriting a single handler.
Why aiogram-mcp?
Most Telegram MCP servers are thin wrappers with 3-5 tools. aiogram-mcp goes further:
- 30 tools — messaging, rich media, moderation, interactive keyboards, event subscriptions, broadcasting
- 7 resources — bot info, config, chat lists, message history, event queue, file metadata, audit log
- 3 prompts — ready-made moderation, announcement, and user report workflows
- Structured output — every tool returns typed Pydantic models with
outputSchemafor programmatic parsing - Real-time events — the bot pushes Telegram events to AI clients via MCP notifications (no polling)
- Interactive messages — AI agents create inline keyboard menus, handle button presses, edit messages
- Rate limiting — built-in token bucket prevents Telegram 429 errors
- Permission levels — restrict AI agents to read-only, messaging, moderation, or full admin access
- Audit logging — track every tool invocation with timestamps and arguments
- Zero rewrite — add 5 lines to your existing bot, keep all your handlers
How It Works
Telegram users Your aiogram bot AI agent (Claude Desktop)
| | |
| send messages, tap buttons | |
| --------------------------> | |
| | MCP server (stdio or SSE) |
| | <-------------------------> |
| | tools / resources / events |
| | |
| bot replies, shows menus | send_message, edit, ban |
| <-------------------------- | <--------------------------- |
The bot runs normally for Telegram users. The MCP server runs alongside it, giving AI agents access to the same bot via tools and resources.
Installation
pip install aiogram-mcp
Requires Python 3.10+ and aiogram 3.20+.
Quickstart
1. Add aiogram-mcp to your bot
import asyncio
from aiogram import Bot, Dispatcher
from aiogram_mcp import AiogramMCP, EventManager, MCPMiddleware
bot = Bot(token="YOUR_BOT_TOKEN")
dp = Dispatcher()
# Middleware tracks chats, users, message history, and events
event_manager = EventManager()
middleware = MCPMiddleware(event_manager=event_manager)
dp.message.middleware(middleware)
dp.callback_query.middleware(middleware) # for interactive buttons
# Register your normal handlers here
# @dp.message(...)
# async def my_handler(message): ...
# Create the MCP server
mcp = AiogramMCP(
bot=bot,
dp=dp,
name="my-bot",
middleware=middleware,
event_manager=event_manager,
allowed_chat_ids=[123456789], # optional: restrict which chats AI can access
)
async def main():
await mcp.run_alongside_bot(transport="stdio")
asyncio.run(main())
2. Connect Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"my-telegram-bot": {
"command": "python",
"args": ["path/to/your/bot.py"],
"env": {
"BOT_TOKEN": "123456:ABC-DEF..."
}
}
}
}
Now Claude can send messages, read history, create button menus, and react to events in your Telegram bot.
Built-in Tools
Messaging (5 tools)
| Tool | Description |
|---|---|
send_message |
Send text with HTML/Markdown formatting |
send_photo |
Send a photo by URL with optional caption |
forward_message |
Forward a message between chats |
delete_message |
Delete a message |
pin_message |
Pin a message in a chat |
Interactive Messages (3 tools)
| Tool | Description |
|---|---|
send_interactive_message |
Send a message with inline keyboard buttons (callback or URL) |
edit_message |
Edit text and/or keyboard of an existing message |
answer_callback_query |
Respond to a button press with a toas |