Skip to main content

MCP server with Telegram search and messaging capabilities

Project description

Hero image

Python Version License: MIT Docker Ready

Fast MCP Telegram Server - Production-ready Telegram integration for AI assistants with comprehensive search, messaging, and direct API access capabilities.

๐ŸŒ Demo

  1. Open https://tg-mcp.redevest.ru/setup to begin the authentication flow.
  2. After finishing, you'll receive a ready-to-use mcp.json with your Bearer token.
  3. Use the config with your MCP client to check out this MCP server capabilities.
  4. 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!"}}'

๐Ÿ“– Table of Contents

โœจ Features

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
๐Ÿ” 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 with 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 and 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

๐Ÿ› ๏ธ Available Tools

Tool Purpose Key Features
search_messages_globally Search across all chats Multi-term queries, date filtering, chat type filtering
search_messages_in_chat Search within specific chat Supports "me" for Saved Messages, optional query for latest messages
send_message Send new message File attachments (URLs/local), formatting (markdown/html), replies
edit_message Edit existing message Text formatting, preserves message structure
read_messages Read specific messages by ID Batch reading, full message content, voice transcription for Premium accounts
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, 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

๐Ÿš€ Quick Start

1. Install from PyPI

pip install fast-mcp-telegram

2. Authenticate with Telegram

fast-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.

3. Configure Your MCP Client

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..."
      }
    }
  }
}

4. Start Using!

{"tool": "search_messages_globally", "params": {"query": "hello", "limit": 5}}
{"tool": "send_message", "params": {"chat_id": "me", "message": "Hello from AI!"}}

๐Ÿ“ For detailed installation instructions, see Installation Guide

๐Ÿ—๏ธ Server Modes

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

๐ŸŒ HTTP-MTProto Bridge

Direct curl access to any Telegram API method - Execute any Telegram MTProto method via HTTP requests with automatic entity resolution and safety guardrails.

Quick Examples

# 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!"},
        "resolve": true
      }'

# 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!\"}",
        "resolve": true
      }'

# 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},
        "resolve": true
      }'

๐Ÿ“– For complete MTProto Bridge documentation, see MTProto Bridge Guide

๐Ÿ“š Documentation

๐Ÿ”’ Security

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

๐Ÿค Contributing

We welcome contributions! Please see our Contributing Guide for:

  • Development setup instructions
  • Testing guidelines
  • Code quality standards
  • Pull request process

Quick Start for Contributors:

  1. Fork the repository
  2. Read the Contributing Guide
  3. Create a feature branch
  4. Make your changes and add tests
  5. Submit a pull request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments


Made with โค๏ธ for the AI automation community

โญ Star us on GitHub โ€ข ๐Ÿ’ฌ Join our community


mcp-name: io.github.leshchenko1979/fast-mcp-telegram

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_leshchenko1979_fast_mcp_telegram-0.11.0.tar.gz.

File metadata

  • Download URL: iflow_mcp_leshchenko1979_fast_mcp_telegram-0.11.0.tar.gz
  • Upload date:
  • Size: 83.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_leshchenko1979_fast_mcp_telegram-0.11.0.tar.gz
Algorithm Hash digest
SHA256 56f69e8f2bdd3c56fd5dd6ddbcf42e22eed6cba1cfb0db8a35ba147fc025094f
MD5 ad5ecf010633b57f4e56fc4f3d48572a
BLAKE2b-256 2df517551f22527000a6c8c166ff131b577d3362e732467943aa731844f05f60

See more details on using hashes here.

File details

Details for the file iflow_mcp_leshchenko1979_fast_mcp_telegram-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_leshchenko1979_fast_mcp_telegram-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 76.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_leshchenko1979_fast_mcp_telegram-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 caa6df5bef36dbe57ac80ada2ff85946bca5a0a9566dbeafd6154dedf420f04d
MD5 8cbcef708e085f788a3447eaf297788a
BLAKE2b-256 6ab228de59f53c9c9da9b9fe9292e2659a47843c4110561bbe57c0b5ba93ff1a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page