Skip to main content
Glama
resccrew

telegram-mcp

by resccrew

edit_message

Modify a previously sent Telegram message by specifying the chat and message ID, with optional markdown formatting.

Instructions

Edit one of your messages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chatYes
textYes
message_idYes
parse_modeNomd

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.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 burden of behavioral disclosure. It only states that the tool edits a message, without mentioning side effects, permissions, reversibility, or constraints like message age or ownership verification.

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

Conciseness3/5

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

The description is a single, waste-free sentence, which is concise. However, it is under-specified to the point of providing minimal useful information beyond the tool name, so it is not appropriately sized for the tool's complexity.

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?

With no annotations and 4 parameters at 0% schema coverage, the description is far from complete. It does not explain required context such as message ownership, edit constraints, or how parse_mode behaves, even though an output schema exists.

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

Parameters1/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 by explaining parameters. It does not mention chat, message_id, text, or parse_mode at all, leaving the agent to infer their meanings solely from the schema field names.

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?

The description clearly states a specific action ('Edit') and a specific resource ('one of your messages'), establishing ownership scope. It implicitly distinguishes from siblings like send_message or delete_messages, though it does not name them explicitly.

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 phrase 'one of your messages' implies usage for modifying an existing message you sent, but it does not provide explicit when-to-use or when-not-to-use context, nor does it name alternative tools for comparison.

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