Skip to main content
Glama
iamalexzatcepin

Telegram MCP

read_chat

Retrieve recent messages from a Telegram chat, oldest first, so AI agents can review conversations or gather context.

Instructions

Read recent messages from a chat, returned oldest-first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chatYes
limitNo
accountNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.3.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It usefully discloses that results are recent and returned oldest-first, but it omits whether the operation is read-only, authentication/permission requirements, pagination behavior, or how the limit default interacts with 'recent'.

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 definition is a single, front-loaded sentence with no wasted words. It is concise and easy to parse, though it achieves brevity by omitting details an agent would benefit from.

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

Completeness2/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 no annotations and no output schema, the description is too thin. It should at least explain the required chat identifier, the limit default, and the account parameter, but it covers none of those.

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% for three parameters. The description only loosely implies the 'chat' parameter and the 'limit' via 'recent messages', while 'account' and all default values are completely unaddressed, so it does little to compensate for the schema gap.

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

Purpose4/5

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

States a specific verb (read) and resource (messages from a chat), plus a useful ordering detail (oldest-first). It is clear what the tool does, but it does not differentiate itself from siblings like search_chat or get_unread.

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

Usage Guidelines2/5

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

There is no explicit when-to-use guidance, no when-not-to-use guidance, and no named alternatives. 'Recent messages' implies a use case, but the agent receives no routing information among the many sibling read/search/list tools.

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