Skip to main content
Glama
iamalexzatcepin

Telegram MCP

list_folder_chats

Retrieve all chats from a specific Telegram folder by providing its numeric ID. Optionally limit results and target a specific account.

Instructions

List chats visible in one Telegram folder by its numeric folder id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
accountNo
folder_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.3.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and does not meet it. It says nothing about the limit/pagination behavior, the account parameter's effect, whether chats are returned in a stable order, or how unread/archived chats are treated.

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?

A single front-loaded sentence with no filler; the key identifying detail (numeric folder id) comes before any trailing clauses.

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 3-parameter tool with no annotations and no output schema, the definition is too thin. An agent can identify the tool but lacks the pagination, account-selection, and return-shape context needed to call and interpret it reliably.

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 only folder_id (numeric id), leaving 'limit' (default 50) and 'account' (default empty string) entirely undefined in both the schema and the description.

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 (List), resource (chats), and scope (visible in one Telegram folder, keyed by numeric folder id). This distinguishes it from list_chats and list_chat_folders in spirit, though it never names those siblings to make the boundary explicit.

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 when-to-use guidance and no mention of alternatives. The phrase 'by its numeric folder id' hints that an id must be obtained elsewhere (e.g. list_chat_folders), but this prerequisite is left for the agent to infer.

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