Skip to main content
Glama
a-shipilo

telegram-mcp-server

by a-shipilo

send_message

Send notifications to a preset Telegram chat via your bot for routine summaries, long-task completions, and issue alerts.

Instructions

Отправить пользователю сообщение в Telegram от имени его бота.

Подходит для уведомлений: итог рутины, завершение долгой задачи, найденная проблема, нужен ответ. Сообщение уходит в чат из настроек сервера, другой чат выбрать нельзя.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesТекст сообщения. При format=html используйте только теги Telegram: <b>, <i>, <u>, <s>, <code>, <pre>, <a href="...">, <blockquote>, <tg-spoiler>. Символы <, > и & в тексте пишите как &lt; &gt; &amp;. Markdown (**жирный**, # заголовки) в этом режиме не работает; списки пишите строками с «•», переносы строк — обычными переводами строки. Текст длиннее 4096 символов уйдёт несколькими сообщениями.
formatNohtml — разметка тегами Telegram; text — обычный текст, всё показывается как есть. Если Telegram не разберёт HTML, сообщение всё равно уйдёт, но без разметки. По умолчанию "html".
silentNoДоставить без звука — для второстепенных уведомлений. По умолчанию false.
link_previewNoПоказывать превью первой ссылки из сообщения. По умолчанию false.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already mark this as a write operation (readOnlyHint=false). The description adds that the destination chat is fixed from server settings, which is useful behavioral context. It doesn't contradict annotations, but doesn't elaborate on delivery guarantees or error handling. With annotations covering the safety profile, the added value is moderate.

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 short sentences: the purpose is front-loaded, followed by typical use cases and a constraint. Every sentence contributes, with no redundancy or filler.

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?

The description covers the core action, use cases, and a critical limitation. The schema and output schema handle parameter details and return format. While it doesn't mention rate limits or authentication, these are likely implicit given the bot context. Overall, it's complete enough 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 description coverage is 100%, with each parameter (text, format, silent, link_preview) having detailed explanations. The description adds no parameter-specific guidance, but the schema already handles this, so the baseline of 3 applies.

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 a message to the user in Telegram on behalf of his bot.' It specifies the verb, resource, and context, making the tool's purpose unambiguous even without siblings.

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 explicitly lists suitable use cases ('notifications: routine summary, completion of a long task, found problem, need answer') and a key constraint (chat comes from server settings, cannot be selected). While it doesn't state when not to use it, the provided context is clear and actionable.

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

Deploy Server

Other Tools