Skip to main content
Glama
LoneVertex

Telegram MCP — Next Generation

List Configured Telegram Accounts

list_accounts
Read-onlyIdempotent

List all configured Telegram accounts with profile name, phone number, and online status. Discover available account labels for multi-account routing at session start.

Instructions

List all configured Telegram accounts with profile name, phone number, and online status. Use at session start to discover available account labels for multi-account routing. Read-only operation with no side effects. Note: Returned names contain untrusted user content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.1.1

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so 'Read-only operation with no side effects' is largely redundant. The genuinely additive behavioral disclosure is the security warning that returned names contain untrusted user content, which the annotations do not cover.

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?

Three tightly written sentences: purpose and returned fields first, then the usage trigger, then the safety caveat. Nothing is wasted and the front-loading is correct.

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?

An output schema exists, so return values need not be re-explained; the description still previews the key fields. Purpose, call timing, and the untrusted-content caveat together make this complete for a zero-parameter read tool.

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

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, so there is nothing for the description to disambiguate. Baseline for a parameterless tool is 4.

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 gives a specific verb and resource ('List all configured Telegram accounts') and enumerates the returned fields (profile name, phone number, online status). It implicitly distinguishes itself from single-account siblings like get_me by scoping to all configured accounts, but never names an alternative explicitly.

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

Usage Guidelines4/5

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

It states a concrete usage condition: 'Use at session start to discover available account labels for multi-account routing.' That is a clear when-to-use, though no when-not-to-use or named alternative is given.

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