Skip to main content
Glama
prabchevski

Telegram Search MCP

by prabchevski

Get a Telegram message

telegram_get_message
Read-onlyIdempotent

Retrieve a single text message from a linked Telegram account using its chat ID and message ID.

Instructions

Fetch one text message available to the linked Telegram account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chat_idYes
message_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYes
trust_boundaryNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare the operation safe (readOnlyHint, idempotentHint, non-destructive), so the description does not need to repeat that. It adds useful constraints: only text messages and only those available to the linked account, which clarifies behavior relative to the media sibling. It is consistent with all annotations and contradicts none.

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 front-loaded sentence with no redundant words. It states the action, object, and availability constraint without extraneous detail.

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 parameterized read operation, the definition is complete: annotations cover safety and idempotence, an output schema exists, and the description adds the text-message constraint. Nothing an agent needs to call the tool successfully is missing.

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%, and the description does not explain chat_id or message_id, their formats, or how they identify the target message. The property names are moderately self-evident, but the description adds no meaningful parameter semantics beyond what the schema already lists.

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 'Fetch' with a precise resource ('one text message') and an explicit scope ('available to the linked Telegram account'). This clearly distinguishes it from siblings like telegram_search_messages (search vs. single retrieval) and telegram_get_media (text vs. media).

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 retrieving a single known message by identifiers, but it never states when to prefer this tool over telegram_search_messages, telegram_get_context, or telegram_get_media. There are no explicit exclusions or alternative conditions.

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