Skip to main content
Glama
resccrew

telegram-mcp

by resccrew

talk_to_bot

Send a message to any Telegram bot and receive its replies, including inline buttons, for automation or bot management.

Instructions

Send a message to a bot (e.g. @BotFather) and return its replies, including their buttons.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
botYes
textYes
timeoutNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It does reveal a non-obvious trait: the tool returns the bot's replies and includes buttons. However, it does not mention whether the call waits up to the timeout, how failures are handled, or any side effects beyond sending the message.

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 a single sentence with no filler. The action, target, and notable output behavior (replies with buttons) are all included in a compact, front-loaded structure.

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

Completeness3/5

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

For a three-parameter tool with an output schema, the description covers the core purpose and return behavior adequately. It is less complete on operational context such as timeout semantics, when to prefer this tool over send_message, and whether the bot identifier should include the '@' prefix or a token from create_bot.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It clarifies 'bot' with the @BotFather example and 'text' implicitly as the message content, but it says nothing about the timeout parameter or the expected format of the bot identifier. This leaves a required-parameter-related detail and a configurable parameter underexplained.

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 ('Send a message') and a specific resource ('a bot'), and clarifies that the tool returns the bot's replies including buttons. This clearly separates it from the generic sibling send_message, which presumably targets normal chats rather than bots.

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 the use case by specifying 'a bot' and giving @BotFather as an example, so an agent can infer when to choose this over send_message. However, it never explicitly names alternatives or states when not to use the tool, leaving the routing decision largely implicit.

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