contacts
Retrieve saved address book entries from a Telegram account to view names and phone numbers for messaging.
Instructions
List contacts of the account
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve saved address book entries from a Telegram account to view names and phone numbers for messaging.
List contacts of the account
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden, and it discloses almost nothing beyond the implied read-only nature of "List". It says nothing about pagination, ordering, result limits, or authentication requirements for a tool that could return an unbounded account contact list.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single short sentence with no waste, and the core action is front-loaded. It is arguably under-specified rather than over-verbose, but it is structurally clean.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool with no output schema, the description is minimally adequate but omits return-shape expectations (e.g. does it return all contacts, is there a cap?). An agent can invoke it correctly but cannot predict what it gets back.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters and the schema is empty, so there is nothing for the description to compensate for. Baseline 4 applies; the description correctly implies no filtering arguments exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource ("List contacts") scoped to "of the account", which is clear enough to distinguish it from add_contact/delete_contact/import_contacts siblings by inference. It does not explicitly name those siblings, so it stops short of full differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this versus searchall, export_contacts, or block_list, and no stated prerequisites. The agent must infer usage from the verb alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.