Skip to main content
Glama
leshchenko1979

Fast MCP Telegram

Telegram MCP Server — Model Context Protocol (MCP) gateway for Telegram. 8 context-efficient tools, multi-tenant, MTProto bridge.

Try the Demo

  1. Open https://tg-mcp.l1979.ru/setup

  2. Scan the QR code from Telegram mobile (Settings → Devices → Scan QR) — no phone typing, no OTP, no 2FA. Or enter your phone number as fallback.

  3. Copy your Bearer token from the success page

Then choose your path:

MCP Client (AI assistants)

  • From the setup page, download the mcp.json file

  • Add the server to your AI client and ask: "send hello to my saved messages in telegram"

Direct API (curl)

  • Run the command below (replace TOKEN with yours):

curl -X POST "https://tg-mcp.l1979.ru/mtproto-api/messages.SendMessage" \
  -H "Authorization: Bearer TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"params": {"peer": "me", "message": "Hello!"}}'

Python Version License: MIT Docker Ready Health Status Glama Score

Related MCP server: mcp-telegram

How It Works

This server sits between your AI agent and Telegram's API:

Your agent → MCP/HTTP → this server → MTProto → Telegram

What it does: Authenticates you with Telegram (QR or phone/bot token), exposes 8 AI-friendly tools instead of 80+ micro-APIs, and bridges raw MTProto for power users. Multi-tenant — one server, many users, isolated sessions.

Features

Feature

Description

:building_construction: Dual Transport

Stdio for local MCP clients, HTTP for remote deploys (http-auth production, optional http-no-auth for dev)

:closed_lock_with_key: Multi-User Authentication

Shared http-auth server: one Bearer token per user, one Telegram account per MCP connection. QR login for instant auth — no phone/OTP/2FA.

:dart: AI-Optimized

8 consolidated tools vs 80+ micro-tools — context-efficient design, LLM-friendly API, MCP ToolAnnotations

:globe_with_meridians: HTTP-MTProto Bridge

Direct curl access to any Telegram API method with entity resolution and safety guardrails

:shield: Session ACL

Opt-in per-principal limits on http-auth (ACL_ENABLED) — chat lanes, read_only, blocked_peers, allow_mtproto, ACL_DENY_UNLISTED_PRINCIPALS; see SECURITY.md

:tv: QR & Web Setup

Scan QR from Telegram mobile for instant auth (no phone/OTP/2FA) or use phone/code/2FA fallback — live at /setup

:label: One Agent, Multiple Accounts

Optional PREFIX_MCP_TOOLS_WITH_ACCOUNT — when one agent uses several MCP connections (same server, different tokens), prefixes tool names so they do not collide; not needed for standard multi-user hosting

:rocket: MTProto Proxy Support

Connect via MTProto proxy with automatic Fake TLS (EE prefix) and standard proxy detection

:card_file_box: Unified Session Management

Single configuration system for setup and server; per-token session files on shared multi-user hosts

:cloud: S3 Session Storage

Store sessions in S3-compatible object storage for ephemeral hosted deployments (Smithery, Fly.io, Railway)

:mag_right: Intelligent Search

Global & per-chat message search with multi-query support and intelligent deduplication

:mag: Unified Message API

Single get_messages tool for search, browse, read by IDs, and replies - 5 modes in one

:speech_balloon: Universal Replies

Get replies from channel posts, forum topics, or any message with one parameter

:busts_in_silhouette: Smart Contact Discovery

Search users, groups, channels with uniform entity schemas, forum detection, profile enrichment

:file_folder: Folder Filtering

Filter chats by dialog folder (archived, custom folders) with integer ID or name matching

:envelope: Advanced Messaging

Send, edit, reply, post to forum topics, formatting, file attachments, and phone number messaging

:paperclip: Secure File Handling

Rich media sharing with SSRF protection, size limits, album support, optional HTTP attachment streaming

:outbox_tray: Inline File Uploads

Data: URI (base64) file uploads in files param — work in all transport modes, filenames preserved, images sent as photos

:microphone: Voice Transcription

Automatic speech-to-text for Premium accounts with parallel processing and polling

:zap: High Performance

Async operations, parallel queries, and memory-conscious batching

:shield: Production Reliability

Auto-reconnect, configurable logging, comprehensive error handling

Quick Start

1. Install and authenticate

Quickest path (remote server): Open /setup → scan QR → copy token (see Try the Demo).

CLI path (local stdio): Run fast-mcp-telegram-setup once to create a Telegram session — then fast-mcp-telegram serves it:

uvx --from fast-mcp-telegram fast-mcp-telegram-setup \
  --api-id="your_api_id" \
  --api-hash="your_api_hash" \
  --phone-number="+123456789"

Bot token alternative (no phone, no OTP): Set BOT_API_TOKEN instead of --phone-number. See Installation Guide.

2. Configure MCP Client

stdio mode (local): Add to your MCP client config (e.g. claude_desktop_config.json) — stdio (standard input/output) is the default transport for local MCP clients:

{
  "mcpServers": {
    "telegram": {
      "command": "uvx",
      "args": ["fast-mcp-telegram"],
      "env": {
        "API_ID": "your_api_id",
        "API_HASH": "your_api_hash"
      }
    }
  }
}

http-auth mode (remote): Add to your MCP client config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "telegram": {
      "url": "https://tg-mcp.l1979.ru/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

Get your token by scanning the QR code on the setup page or see Installation Guide for deploying your own server.

3. Start Using

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

Deploy to Remote Server

Deploy your own MCP server on a VDS — see Installation Guide for step-by-step instructions.

Available Tools

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), date filtering in all modes

send_message

Send new message

File attachments (URLs/local/data URIs), classic formatting (markdown/html), parse_mode=rich Rich Messages, reply to forum topics

edit_message

Edit existing message

Classic or parse_mode=rich formatting

find_chats

Find users/groups/channels

Multi-term search, contact discovery, folder filtering, username/phone lookup

get_chat_info

Get detailed profile info

Member counts, bio/about, online status, forum topics, common groups, enriched data

send_message_to_phone

Message phone numbers

Auto-contact management, optional cleanup, file support (URLs/data URIs), parse_mode=rich

invoke_mtproto

Direct Telegram API (power user)

Raw MTProto methods, entity resolution, safety guardrails — see MTProto Bridge

See Tools Reference for detailed documentation with examples.

Documentation

Telemetry

Anonymous tool telemetry since v0.30.1 — heartbeat every 6h, no credentials or message content collected. Opt out with DO_NOT_TRACK=1. See ADR 0005.

Auth flow telemetry since v0.38.0 — atomic events during setup (phone, QR, bot token, reauthorize). Buffered flush on flow completion. See ADR 0008.

License

MIT License - see LICENSE

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

Available Tools

8 tools
edit_messageEdit messageA
DestructiveIdempotent
Inspect

Replace the text of an existing message in a Telegram chat. Only works on messages sent by the authenticated account. Cannot edit media or other message attributes — text only. Success: dict with message_id, date, chat, text, status='edited', and edit_date. Error: dict with ok=false and error string (e.g. message not found or not editable). Use edit_message to update a previously sent message; use send_message to create new ones. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
chat_idYesTarget chat: numeric id (e.g. -100…), username without @, or 'me' for Saved Messages.
message_idYesMessage id in this chat to edit (from get_messages or Telegram).
messageYesMessage text. When sending files, used as caption.
parse_modeNo'markdown', 'html', or 'auto' (detect from content). Default is 'auto'.auto

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
message_idNo
dateNo
chatNo
textNo
statusNo
senderNo
reply_markupNo
edit_dateNo
topic_idNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds significant context beyond the annotations: it explains the tool is destructive (edits existing message), idempotent (re-editing same text yields same result), and mentions that it only works on own messages. It also describes the success and error return formats. The annotations already indicate destructiveHint and idempotentHint, but the description elaborates on what that means in practice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded with the core purpose. It is structured logically: what it does, constraints, success/error outputs, usage guidance, and a link to full docs. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there is no explicit output schema provided, the description compensates by detailing return values and error formats. It covers all key aspects: constraints, intended usage, output structure, error handling, and a reference link. This is fully sufficient for an agent to understand and use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage with clear descriptions for each of the 4 parameters, including enums and defaults. The tool description does not add any additional parameter-level meaning beyond what the schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool replaces the text of an existing message in a Telegram chat, specifying it only works on messages sent by the authenticated account and cannot edit media or other attributes. It distinguishes itself from sibling tools like send_message by explicitly saying 'Use edit_message to update a previously sent message; use send_message to create new ones.'

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells when to use this tool (to update a previously sent message) and when to use send_message (to create new ones). It does not provide explicit when-not-to-use scenarios beyond the stated constraints, but those constraints (only own messages, text only) are clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find_chatsFind chatsA
Read-onlyIdempotent
Inspect

Find users/groups/channels by name, username, or phone. Global search (query required) searches all Telegram; with min_date, max_date, or filter, search uses dialog list or a named filter; include_peers filters use last-activity from GetPeerDialogs; flag-based filters use dialog list dates. Success: dict with key chats (list of chat objects). Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNoName, username (no @), phone (+country…), or comma-separated multi-queries. Required for global search unless you use min_date/max_date or folder alone.
limitNoMaximum chats to return (recommended 50 or less).
chat_typeNoComma-separated chat kinds: private, bot, group, channel. Case-insensitive; extra spaces allowed.
publicNoIf true, prefer chats with a public username; if false, without. Does not apply to private DMs. Omit to skip this filter.
min_dateNoInclusive minimum date filter (ISO 8601 date or datetime). Omit for no lower bound.
max_dateNoInclusive maximum date filter (ISO 8601 date or datetime). Omit for no upper bound.
folderNoTelegram folder name (case-insensitive exact match after normalization). In Telegram's UI these are called folders; internally they are "dialog filters" — saved filter presets that group chats by custom criteria (pinned, unread, business, etc.). See Filters-vs-Folders.md for the technical distinction.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
chatsNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate read-only and idempotent behavior. The description adds behavioral details: search mode depends on parameters, success returns a dict with 'chats' key. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (3-4 sentences), front-loaded with the main action, and includes essential behavioral notes without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters, different search modes, and an output schema referenced, the description adequately explains behavior and parameter roles, making it complete for an agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with parameter descriptions. The description adds value by explaining how parameters affect search mode but doesn't provide new info beyond schema for individual parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool finds users/groups/channels by name, username, or phone, distinguishing it from sibling tools like search_messages_globally which search messages. The verb 'Find' and resource 'chats' are specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use global search vs dialog list based on parameters (query required for global, dates/folder for dialog list). It provides context for parameter combinations but does not explicitly exclude alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_chat_infoGet chat infoA
Read-onlyIdempotent
Inspect

Load profile and metadata for one user, bot, group, or channel. Success: info dict; forum chats may include topics up to topics_limit. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
chat_idYesTarget chat: numeric id (e.g. -100…), username without @, or 'me' for Saved Messages.
topics_limitNoMax forum topics to list when the chat is a forum.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
idNo
titleNo
usernameNo
first_nameNo
last_nameNo
phoneNo
is_forumNo
is_channelNo
is_groupNo
is_userNo
is_botNo
participants_countNo
topicsNo
topics_has_moreNo

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only, idempotent, and open-world behavior. The description adds that the result is an info dict and that forum chats may include topics up to the specified limit, providing some additional behavioral context. However, it does not disclose error handling, permissions, or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences: the first states the core purpose, the second summarizes success output and special forum behavior, and the third provides a documentation link. It is front-loaded, efficient, and free of redundant content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter tool with high schema coverage, full annotations, and an existing output schema, the description is sufficiently complete. It covers the purpose, return type, and special forum behavior without needing to explain return values in detail. The documentation link also supplements any missing specifics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, giving a baseline of 3. The description adds meaning by specifying that the target can be a user, bot, group, or channel, which clarifies the chat_id parameter domain. It also reinforces the topics_limit behavior for forums, going slightly beyond the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Load') and identifies the resource ('profile and metadata for one user, bot, group, or channel'), making the tool's function explicit. It clearly distinguishes from siblings like get_messages and find_chats by specifying it targets a single chat entity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool (when you need profile/metadata for a specific chat) but does not explicitly mention alternatives or when not to use it. No exclusions or references to sibling tools are provided, so guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_messagesGet messages in chatA
Read-onlyIdempotent
Inspect

Read or search messages in one chat: browse latest, search text, fetch by ids, or load replies to a message (comments, forum topics, threads). Do not combine message_ids with query or reply_to_id. Success: messages, has_more, optional total_count and discussion fields. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
chat_idYesTarget chat: numeric id (e.g. -100…), username without @, or 'me' for Saved Messages.
queryNoSearch within this chat only; comma-separated terms. Omit to browse latest or use message_ids / reply_to_id modes.
message_idsNoExact message ids to fetch. Mutually exclusive with query and reply_to_id.
reply_to_idNoAnchor message id: channel post id, forum topic_id from get_chat_info, or a message id for direct replies. Use with thread_scope.
thread_scopeNoOnly with reply_to_id. auto: full forum topic (topic_id) or channel comment thread via getReplies; else direct replies. full: nested branch under a message id (forum in-topic uses search window, not whole topic); supergroup threads use search top_msg_id. direct: immediate replies only.auto
limitNoMaximum messages to return (recommended 50 or less).
min_dateNoInclusive minimum date filter (ISO 8601 date or datetime). Omit for no lower bound.
max_dateNoInclusive maximum date filter (ISO 8601 date or datetime). Omit for no upper bound.
auto_expand_batchesNoExtra search batches to run when filters narrow results. Higher values may return more matches at the cost of latency.
include_total_countNoIf true, response may include total_count where supported (per-chat search; ignored for global search).

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
messagesNo
has_moreNo
total_countNo
_warningNo

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true, so the description's extra constraints (mutual exclusivity, output fields) add useful but not critical context. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences front-loading purpose and modes, with a link to full docs. Efficient but could be slightly more streamlined.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers all modes, constraints, and output expectations. Has output schema and documentation link. For a tool with 10 parameters and multiple modes, it provides sufficient guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so each parameter is already documented. The description adds value by explaining usage modes and mutual exclusivity, going beyond raw schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it reads or searches messages in a chat, listing specific modes (browse latest, search text, fetch by ids, load replies). Distinguishes from sibling 'search_messages_globally' by focusing on a single chat.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states not to combine message_ids with query or reply_to_id, and mentions successful output fields. Provides a documentation link for more details. Could be more direct about when to use siblings, but context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

invoke_mtprotoInvoke MTProtoA
Destructive
Inspect

Low-level Telegram API (MTProto) invoke for methods not wrapped by other tools. Dangerous methods require allow_dangerous=true. Success: API result dict or normalized error. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
method_full_nameYesTelegram API method, e.g. "messages.GetHistory" or "users.GetFullUser" (normalization applied).
params_jsonYesJSON object string of TL parameters as in Telegram API docs; nested TL uses "_": "typeName" discriminator.
allow_dangerousNoIf false, destructive methods (e.g. deletes) are blocked. Set true only when intended.
resolveNoIf true, resolve string/int peer-like fields to TL Input* entities before invoke.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
_No
idNo
dateNo
usersNo
chatsNo
messagesNo
resultNo

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate openWorldHint and destructiveHint. The description adds useful behavioral context: destructive methods are blocked unless allow_dangerous=true, and success returns either an API result dict or normalized error. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences, each earning its place: purpose, safety/success behavior, and a documentation link. Information is front-loaded and free of fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present and annotations covering open-world/destructive traits, the description fully addresses necessary context for a low-level fallback tool. It clearly states the tool's scope, safety guardrail, and result format, plus a link to full docs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema already covers all parameters with descriptions, so baseline is 3. The description adds context beyond the schema by connecting allow_dangerous to the dangerous-methods mechanism, enhancing the agent's understanding of when and how to set it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it invokes low-level Telegram MTProto methods not wrapped by other tools, distinguishing it from the sibling high-level tools. The verb 'invoke' and resource 'MTProto' are specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says to use for methods not wrapped by other tools, positioning it as a fallback. It also provides critical guidance about dangerous methods requiring allow_dangerous=true, which helps the agent decide when this tool is appropriate versus safer alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_messages_globallySearch messages globallyA
Read-onlyIdempotent
Inspect

Search all Telegram chats at once (not scoped to one chat). Comma-separated query terms; optional filters by date, chat kind, and public username. Success: message list and metadata dict. Global search ignores include_total_count. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch terms, comma-separated for multiple terms (OR-style global search). Required.
limitNoMaximum messages to return (recommended 50 or less).
min_dateNoInclusive minimum date filter (ISO 8601 date or datetime). Omit for no lower bound.
max_dateNoInclusive maximum date filter (ISO 8601 date or datetime). Omit for no upper bound.
chat_typeNoComma-separated chat kinds: private, bot, group, channel. Case-insensitive; extra spaces allowed.
publicNoIf true, prefer chats with a public username; if false, without. Does not apply to private DMs. Omit to skip this filter.
auto_expand_batchesNoExtra search batches to run when filters narrow results. Higher values may return more matches at the cost of latency.
include_total_countNoIf true, response may include total_count where supported (per-chat search; ignored for global search).

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
messagesNo
has_moreNo
total_countNo
_warningNo

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses a non-obvious behavior (global search ignores include_total_count) and states the success return shape ('message list and metadata dict'). This adds context beyond the readOnly/idempotent annotations. No contradictions exist with the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences front-load the core purpose, followed by key search behavior and a documentation link. Every sentence earns its place with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 8-parameter schema with full descriptions, the description covers global scope, return format, and a behavioral caveat, plus a documentation link for deeper reference. It's sufficiently complete for an agent to select and invoke the tool correctly without needing additional information.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with rich parameter descriptions, so the baseline is 3. The description restates query semantics ('Comma-separated query terms') and summarizes filter options, but doesn't add significant new parameter details beyond what the schema already provides. The include_total_count caveat is a small extra.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Search all Telegram chats at once') and resource (messages across all chats). The parenthetical 'not scoped to one chat' explicitly differentiates it from sibling tools like get_messages, giving it a distinct and unambiguous purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It implies use when needing cross-chat search by stating 'Search all Telegram chats at once' and contrasting with scoped search. It also provides a specific behavioral caveat ('Global search ignores include_total_count'). However, it doesn't explicitly name alternative tools for single-chat search, so the guidance is clear but not fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_messageSend messageA
Destructive
Inspect

Send text and optional file attachments to a Telegram chat. Supports reply-to (including forum topics and channel discussion groups), auto-detected or explicit parse_mode (markdown/html), and file attachments as http(s) URLs, local paths, or data: URIs. When files are provided, the message text becomes a caption. For channel posts with reply_to_id, automatically posts in the linked discussion group. Success: dict with message_id, date, chat, text, status='sent', and sender info. Error: dict with ok=false and error string. Use send_message to create new messages; use edit_message to modify existing ones. Use send_message_to_phone when targeting a phone number instead of a chat_id. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
chat_idYesTarget chat: numeric id (e.g. -100…), username without @, or 'me' for Saved Messages.
messageYesMessage text. When sending files, used as caption.
reply_to_idNoTelegram message id to reply to. For forums, topic root id; for channel posts, post id (may create a comment). Omit for a new top-level message.
parse_modeNo'markdown', 'html', or 'auto' (detect from content). Default is 'auto'.auto
filesNoList of attachment URLs, local paths, or data URIs (one or more strings). data: URIs (data:<mime>;base64,<payload>) work in all server modes; local paths work in stdio mode only.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
message_idNo
dateNo
chatNo
textNo
statusNo
senderNo
reply_markupNo
edit_dateNo
topic_idNo

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate destructiveHint=true and openWorldHint=true. The description adds valuable behavioral context: auto-detected parse_mode, file attachment support (URLs, paths, data URIs), reply-to behavior for forums and channel discussion groups, and the outcome format (success/error dicts). No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense but not overly verbose. It front-loads the main action and then logically organizes supporting details. Slightly longer than necessary but efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (5 parameters, enum, multiple modes) and the presence of an output schema that documents return values, the description covers all key behavioral aspects, usage alternatives, and edge cases (channel posts, forum topics). It also references external documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All 5 parameters are documented in the schema with detailed descriptions (100% coverage). The description adds extra context, such as the interaction between reply_to_id and channel posts, and file type restrictions. This goes beyond the schema, meriting a score above baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with 'Send text and optional file attachments to a Telegram chat,' clearly stating the action and target. It explicitly distinguishes from siblings by mentioning edit_message for modifications and send_message_to_phone for targeting phone numbers.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance: 'Use send_message to create new messages; use edit_message to modify existing ones. Use send_message_to_phone when targeting a phone number instead of a chat_id.' Also explains behavior for channel posts with reply_to_id.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_message_to_phoneSend message to phoneA
Destructive
Inspect

Send to a phone number: may create a temporary contact, then send text or files. Success: send result plus contact_was_new / contact_removed when applicable. Full documentation: https://github.com/leshchenko1979/fast-mcp-telegram/blob/main/docs/Tools-Reference.md

ParametersJSON Schema
NameRequiredDescriptionDefault
phone_numberYesE.164 phone number with country code, e.g. +1234567890 (must be on Telegram).
messageYesMessage text. When sending files, used as caption.
first_nameNoFirst name when creating a temporary contact.Contact
last_nameNoLast name when creating a temporary contact.Name
remove_if_newNoIf true, delete the contact after send when it was created only for this send.
reply_to_msg_idNoReply to this message id in the target chat after resolve.
parse_modeNo'markdown', 'html', or 'auto' (detect from content). Default is 'auto'.auto
filesNoList of attachment URLs, local paths, or data URIs (one or more strings). data: URIs (data:<mime>;base64,<payload>) work in all server modes; local paths work in stdio mode only.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
errorNo
operationNo
codeNo
paramsNo
exceptionNo
actionNo
error_codeNo
message_idNo
dateNo
chatNo
textNo
statusNo
senderNo
reply_markupNo
edit_dateNo
topic_idNo
phone_numberNo
contact_was_newNo
contact_removedNo

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide destructiveHint and openWorldHint. The description adds context about creating temporary contacts and returning contact_was_new/contact_removed, which are side effects beyond annotations. However, it does not detail error cases or all behavioral nuances.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences plus a reference link. Information is front-loaded: first sentence states the core purpose. Every word serves a purpose; no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (8 parameters, output schema exists), the description covers the high-level flow and return values. It relies on the schema for parameter details, which is acceptable, but could briefly mention interaction between parameters like files and message.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema documents all parameters thoroughly. The description provides overall flow context but does not add additional meaning to individual parameters beyond what the schema already offers.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Send') and the resource ('to a phone number'), and distinguishes it from siblings like 'send_message' by specifying the target is a phone number rather than a chat ID. It also mentions creating temporary contacts, which is specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for sending to phone numbers but does not explicitly compare with siblings or provide when-to-use vs when-not-to-use guidance. The link to full documentation exists but the description itself lacks direct usage guidelines.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool updatev0.37.0
    • Addedsearch_messages_globally
  2. 1 tool update
    • Removedsearch_messages_globally
  3. 8 tool updatesv0.36.0
    • Changededit_message3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``send_message`` and ``edit_message``."
      • addedOutput schema / properties
        Added value: +{
        +  "action": {
        +    "type": "string"
        +  },
        +  "chat": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "date": {
        +    "type": "string"
        +  },
        +  "edit_date": {
        +    "type": "string"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "message_id": {
        +    "type": "integer"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "reply_markup": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "sender": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "status": {
        +    "type": "string"
        +  },
        +  "text": {
        +    "type": "string"
        +  },
        +  "topic_id": {
        +    "type": "integer"
        +  }
        +}
    • Changedfind_chats3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``find_chats``."
      • addedOutput schema / properties
        Added value: +{
        +  "action": {
        +    "type": "string"
        +  },
        +  "chats": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  }
        +}
    • Changedget_chat_info3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``get_chat_info``."
      • addedOutput schema / properties
        Added value: +{
        +  "action": {
        +    "type": "string"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "first_name": {
        +    "type": "string"
        +  },
        +  "id": {
        +    "type": "integer"
        +  },
        +  "is_bot": {
        +    "type": "boolean"
        +  },
        +  "is_channel": {
        +    "type": "boolean"
        +  },
        +  "is_forum": {
        +    "type": "boolean"
        +  },
        +  "is_group": {
        +    "type": "boolean"
        +  },
        +  "is_user": {
        +    "type": "boolean"
        +  },
        +  "last_name": {
        +    "type": "string"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "participants_count": {
        +    "type": "integer"
        +  },
        +  "phone": {
        +    "type": "string"
        +  },
        +  "title": {
        +    "type": "string"
        +  },
        +  "topics": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "topics_has_more": {
        +    "type": "boolean"
        +  },
        +  "username": {
        +    "type": "string"
        +  }
        +}
    • Changedget_messages3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``search_messages_globally`` and ``get_messages``."
      • addedOutput schema / properties
        Added value: +{
        +  "_warning": {
        +    "type": "string"
        +  },
        +  "action": {
        +    "type": "string"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "has_more": {
        +    "type": "boolean"
        +  },
        +  "messages": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "total_count": {
        +    "type": "integer"
        +  }
        +}
    • Changedinvoke_mtproto3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``invoke_mtproto``.\n\nThe success payload is a JSON-safe dict whose shape depends on the\nTelegram API method invoked.  Common top-level fields are listed here;\neverything else passes through as-is."
      • addedOutput schema / properties
        Added value: +{
        +  "_": {
        +    "type": "string"
        +  },
        +  "action": {
        +    "type": "string"
        +  },
        +  "chats": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "date": {
        +    "type": "integer"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "id": {
        +    "type": "integer"
        +  },
        +  "messages": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "result": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "users": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  }
        +}
    • Changedsearch_messages_globally3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``search_messages_globally`` and ``get_messages``."
      • addedOutput schema / properties
        Added value: +{
        +  "_warning": {
        +    "type": "string"
        +  },
        +  "action": {
        +    "type": "string"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "has_more": {
        +    "type": "boolean"
        +  },
        +  "messages": {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "total_count": {
        +    "type": "integer"
        +  }
        +}
    • Changedsend_message3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``send_message`` and ``edit_message``."
      • addedOutput schema / properties
        Added value: +{
        +  "action": {
        +    "type": "string"
        +  },
        +  "chat": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "date": {
        +    "type": "string"
        +  },
        +  "edit_date": {
        +    "type": "string"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "message_id": {
        +    "type": "integer"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "reply_markup": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "sender": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "status": {
        +    "type": "string"
        +  },
        +  "text": {
        +    "type": "string"
        +  },
        +  "topic_id": {
        +    "type": "integer"
        +  }
        +}
    • Changedsend_message_to_phone3 fields changed
      • removedOutput schema / additionalProperties
        Removed value: -true
      • addedOutput schema / description
        Added value: +"Return type for ``send_message_to_phone``."
      • addedOutput schema / properties
        Added value: +{
        +  "action": {
        +    "type": "string"
        +  },
        +  "chat": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "code": {
        +    "type": "integer"
        +  },
        +  "contact_removed": {
        +    "type": "boolean"
        +  },
        +  "contact_was_new": {
        +    "type": "boolean"
        +  },
        +  "date": {
        +    "type": "string"
        +  },
        +  "edit_date": {
        +    "type": "string"
        +  },
        +  "error": {
        +    "type": "string"
        +  },
        +  "error_code": {
        +    "type": "string"
        +  },
        +  "exception": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "message_id": {
        +    "type": "integer"
        +  },
        +  "ok": {
        +    "type": "boolean"
        +  },
        +  "operation": {
        +    "type": "string"
        +  },
        +  "params": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "phone_number": {
        +    "type": "string"
        +  },
        +  "reply_markup": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "sender": {
        +    "additionalProperties": true,
        +    "type": "object"
        +  },
        +  "status": {
        +    "type": "string"
        +  },
        +  "text": {
        +    "type": "string"
        +  },
        +  "topic_id": {
        +    "type": "integer"
        +  }
        +}
  4. 2 tool updatesv0.29.0
    • Changedsend_message1 field changed
      • changedInput schema / properties / files / description
        Previous value: -"List of attachment URLs or local paths (one or more strings). Local paths work in stdio mode only."New value: +"List of attachment URLs, local paths, or data URIs (one or more strings). data: URIs (data:<mime>;base64,<payload>) work in all server modes; local paths work in stdio mode only."
    • Changedsend_message_to_phone1 field changed
      • changedInput schema / properties / files / description
        Previous value: -"List of attachment URLs or local paths (one or more strings). Local paths work in stdio mode only."New value: +"List of attachment URLs, local paths, or data URIs (one or more strings). data: URIs (data:<mime>;base64,<payload>) work in all server modes; local paths work in stdio mode only."
  5. 8 tool updatesv0.21.0
    • First observededit_message
    • First observedfind_chats
    • First observedget_chat_info
    • First observedget_messages
    • First observedinvoke_mtproto
    • First observedsearch_messages_globally
    • First observedsend_message
    • First observedsend_message_to_phone

TDQS

A4.4/5.0

Scored across 8 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: editing messages, sending to chats or phone numbers, searching globally or per chat, retrieving chat info, and low-level API access. No ambiguity between tools.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., edit_message, find_chats, get_chat_info). No mixing of styles or vague verbs.

Tool Count5/5

8 tools is well-scoped for a Telegram MCP server, covering essential messaging, search, and low-level operations without being excessive or insufficient.

Completeness4/5

Core messaging workflows (send, edit, search, find) are covered. Missing a delete_message tool, but invoke_mtproto can fill gaps. Minor gap for a common operation.

Maintenance

ActivityActive
ResponsivenessResponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Production-grade MCP server for Telegram with dual-mode Bot API and MTProto. 6 composite tools covering messages, chats, media, contacts management with 3-tier token optimization.
    11
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server that connects AI assistants to your real Telegram account via User API (MTProto). Features default-deny ACL with per-chat permissions, message search, file sending, forwarding, media downloads, and rate limiting.
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Privacy-first Telegram MCP server enabling maintainers to triage chats, inspect context, search messages, draft replies, and send authorized messages locally without a cloud relay.
    30
    1
    MIT