Fast MCP Telegram Server - Production-ready Telegram integration for AI assistants with comprehensive search, messaging, and direct API access capabilities.
- Open https://tg-mcp.redevest.ru/setup to begin the authentication flow.
- After finishing, you'll receive a ready-to-use
mcp.jsonwith your Bearer token. - Use the config with your MCP client to check out this MCP server capabilities.
- Or try the HTTPβMTProto Bridge right away with curl (replace TOKEN):
curl -X POST "https://tg-mcp.redevest.ru/mtproto-api/messages.SendMessage" \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d '{"params": {"peer": "me", "message": "Hello from Demo!"}}'- β¨ Features
- π― Design Philosophy
- π Quick Start
- ποΈ Server Modes
- π HTTP-MTProto Bridge
- π Documentation
- π Security
- π€ Contributing
- π License
| Feature | Description |
|---|---|
| π Multi-User Authentication | Production-ready Bearer token auth with session isolation and LRU cache management |
| π HTTP-MTProto Bridge | Direct curl access to any Telegram API method with entity resolution and safety guardrails |
| π Unified Message API | Single get_messages tool for search, browse, read by IDs, and replies - 5 modes in one |
| π¬ Universal Replies | Get replies from channel posts, forum topics, or any message with one parameter |
| π Intelligent Search | Global & per-chat message search with multi-query support and intelligent deduplication |
| ποΈ Dual Transport | Seamless development (stdio) and production (HTTP) deployment support |
| π Secure File Handling | Rich media sharing with SSRF protection, size limits, and album support |
| βοΈ Advanced Messaging | Send, edit, reply, post to forum topics, formatting, file attachments, and phone number messaging |
| π€ Voice Transcription | Automatic speech-to-text for Premium accounts with parallel processing and polling |
| π Unified Session Management | Single configuration system for setup and server, with multi-account support |
| π₯ Smart Contact Discovery | Search users, groups, channels with uniform entity schemas, forum detection, profile enrichment |
| β‘ High Performance | Async operations, parallel queries, connection pooling, and memory optimization |
| π‘οΈ Production Reliability | Auto-reconnect, structured logging, comprehensive error handling with clear actionable messages |
| π― AI-Optimized | Literal parameter constraints, LLM-friendly API design, and MCP ToolAnnotations |
| π Web Setup Interface | Browser-based authentication flow with immediate config generation |
Save context space for LLMs by making tools as general-purpose as possible. Fewer, more capable tools consume less of the AI's context window than many narrow-purpose tools. We consolidate functionality (e.g. get_messages handles search, browse, read-by-ID, and replies in one tool; invoke_mtproto provides raw API access for edge cases), use uniform schemas across tools so responses can be automatically processed when possible, and keep descriptions concise. We accept more parameters per tool and slightly more complex signatures in exchange for fewer tools and less context. When adding capabilities, we prefer extending existing tools over introducing new ones.
| Tool | Purpose | Key Features |
|---|---|---|
search_messages_globally |
Search across all chats | Multi-term queries, date filtering, chat type filtering |
get_messages |
Unified message retrieval | Search/browse, read by IDs, get replies (posts/topics/messages), 5 modes |
send_message |
Send new message | File attachments (URLs/local), formatting (markdown/html), unified reply_to_id (message, forum topic, or channel post comment) |
edit_message |
Edit existing message | Text formatting, preserves message structure |
find_chats |
Find users/groups/channels | Multi-term search, contact discovery, username/phone lookup |
get_chat_info |
Get detailed profile info | Member counts, bio/about, online status, forum topics, enriched data |
send_message_to_phone |
Message phone numbers | Auto-contact management, optional cleanup, file support |
invoke_mtproto |
Direct Telegram API access | Raw MTProto methods, entity resolution, safety guardrails |
π For detailed tool documentation with examples, see Tools Reference
pip install fast-mcp-telegramfast-mcp-telegram-setup --api-id="your_api_id" --api-hash="your_api_hash" --phone-number="+123456789"π Prefer a browser? Run the server and open /setup to authenticate and download a readyβtoβuse mcp.json. You can also reauthorize existing sessions through the same interface.
STDIO Mode (Development with Cursor IDE):
{
"mcpServers": {
"telegram": {
"command": "fast-mcp-telegram",
"env": {
"API_ID": "your_api_id",
"API_HASH": "your_api_hash",
"PHONE_NUMBER": "+123456789"
}
}
}
}HTTP_AUTH Mode (Production with Bearer Token):
{
"mcpServers": {
"telegram": {
"url": "https://your-server.com",
"headers": {
"Authorization": "Bearer AbCdEfGh123456789KLmnOpQr..."
}
}
}
}// Global search across all chats
{"tool": "search_messages_globally", "params": {"query": "hello", "limit": 5}}
// Get latest messages from a chat
{"tool": "get_messages", "params": {"chat_id": "me", "limit": 10}}
// Search within a specific chat
{"tool": "get_messages", "params": {"chat_id": "@username", "query": "project"}}
// Read specific messages by ID
{"tool": "get_messages", "params": {"chat_id": "me", "message_ids": [123, 124]}}
// Get replies (channel posts, forum topics, or message replies)
{"tool": "get_messages", "params": {"chat_id": "-1001234567890", "reply_to_id": 42}}
// Send a message
{"tool": "send_message", "params": {"chat_id": "me", "message": "Hello from AI!"}}π For detailed installation instructions, see Installation Guide
| Mode | Transport | Authentication | Use Case |
|---|---|---|---|
| STDIO | stdio | Disabled | Development with Cursor IDE |
| HTTP_NO_AUTH | HTTP | Disabled | Development HTTP server |
| HTTP_AUTH | HTTP | Required (Bearer token) | Production deployment |
Direct curl access to any Telegram API method - Execute any Telegram MTProto method via HTTP requests with automatic entity resolution and safety guardrails.
# Send message with automatic entity resolution
curl -X POST "https://your-domain.com/mtproto-api/messages.SendMessage" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"params": {"peer": "@username", "message": "Hello from curl!"}}'
# Send message using params_json (works with n8n and other tools)
curl -X POST "https://your-domain.com/mtproto-api/messages.SendMessage" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"params_json": "{\"peer\": \"@username\", \"message\": \"Hello from curl!\"}"}'
# Get message history with peer resolution
curl -X POST "https://your-domain.com/mtproto-api/messages.getHistory" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"params": {"peer": "me", "limit": 10}}'π For complete MTProto Bridge documentation, see MTProto Bridge Guide
- Installation Guide - Detailed installation and configuration
- Deployment Guide - Docker deployment and production setup
- Tools Reference - Complete tools documentation with examples
- Search Guidelines - Search best practices and limitations
- Operations Guide - Health monitoring and troubleshooting
- Project Structure - Code organization and architecture
- Contributing Guide - Development setup and contribution guidelines
Key Security Features:
- Bearer token authentication with session isolation
- SSRF protection for file downloads
- Dangerous method blocking with opt-in override
- Session file security and automatic cleanup
π For complete security information, see SECURITY.md
We welcome contributions! Please see our Contributing Guide for:
- Development setup instructions
- Testing guidelines
- Code quality standards
- Pull request process
Quick Start for Contributors:
- Fork the repository
- Read the Contributing Guide
- Create a feature branch
- Make your changes and add tests
- Submit a pull request
This project is licensed under the MIT License - see the LICENSE file for details.
- FastMCP - MCP server framework
- Telethon - Telegram API library
- Model Context Protocol - Protocol specification
Made with β€οΈ for the AI automation community
mcp-name: io.github.leshchenko1979/fast-mcp-telegram