Skip to main content
Glama
theYahia

@theyahia/tgstat-mcp

by theYahia

list_languages

Retrieve supported language codes for filtering Telegram channel searches. Use these codes as search parameters to restrict results by language.

Instructions

List available language codes (use as the language filter in search).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoResponse language for namesru

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. The verb 'List' clearly implies a read-only operation with no side effects, which is transparent enough for a simple enumeration. It does not explicitly state 'read-only', but the behavior is unambiguous.

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 concise sentence that packs both the purpose and a usage hint. No unnecessary words or redundancy; it is well-structured and to the point.

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?

Given the low complexity (one optional parameter, no output schema), the description provides all necessary context: what the tool returns and how to use it. The parameter is fully documented in the schema, so no missing information affects usability.

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

Parameters3/5

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

The input schema already includes a description for the 'lang' parameter ('Response language for names'), covering 100% of the parameter. The tool description does not add additional meaning beyond this, so the score matches the baseline for full schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'List available language codes' and provides a specific use case: 'use as the `language` filter in search'. This makes the purpose unmistakable.

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

Usage Guidelines5/5

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

The description explicitly tells the agent how to use the output ('use as the `language` filter in search'), giving clear guidance on when this tool is relevant. It implicitly differentiates it from other list tools by focusing on language codes.

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