Skip to main content
Glama
antonio-castellon

io.github.antonio-castellon/mcp-telegram-bridge

telegram_get_chat

Retrieve metadata for a Telegram chat by providing its chat_id, returning details needed to verify chat type, title, and access before sending messages.

Instructions

Fetch chat metadata (getChat) for a chat_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chat_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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 says the operation fetches metadata and offers no context about read-only behavior, authentication requirements, failure modes, or what happens if the chat_id is invalid or inaccessible.

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 filler and no redundant information. Every word contributes to the meaning, which is ideal for a simple one-parameter tool.

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?

With a simple one-parameter schema and an output schema present, the description covers the core mechanics. However, the absence of annotations and usage guidance leaves gaps around when to call it and what behavioral expectations exist, making it only minimally adequate overall.

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, but it merely repeats the chat_id parameter name without explaining accepted formats, constraints, or meaning. It adds little beyond the input schema itself.

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 uses a specific verb ('Fetch'), a clear resource ('chat metadata'), and names the underlying API ('getChat'). It clearly conveys the tool's purpose, though it does not explicitly differentiate it from siblings like telegram_get_me or telegram_get_updates.

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?

The description provides no guidance on when to use this tool versus alternatives, nor does it mention any exclusions or preferred contexts. An agent must infer the intended use solely from the tool name and the word 'metadata'.

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