Skip to main content
Glama
theYahia

@theyahia/tgstat-mcp

by theYahia

compare_channels

Compare multiple Telegram channels side-by-side on subscriber count, average reach, and engagement rate (ERR) using TGstat data.

Instructions

Compare several channels side by side on subscribers, average reach and ERR (one channels/stat lookup per channel).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channel_idsYes2–10 channel @usernames / IDs to compare

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv2.0.0
    • changedInput schema / properties / channel_ids / description
      Previous value: -"Массив ID/username каналов для сравнения"New value: +"2–10 channel @usernames / IDs to compare"
    • addedInput schema / properties / channel_ids / items / description
      Added value: +"Channel @username, t.me link, or TGStat channel ID"
    • addedInput schema / properties / channel_ids / items / minLength
      Added value: +1
    • addedInput schema / properties / channel_ids / maxItems
      Added value: +10
    • addedInput schema / properties / channel_ids / minItems
      Added value: +2
  2. First observedv1.0.1

TDQS

A3.8/5.0
Behavior3/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. It does not explicitly mention that the operation is read-only or free of side effects, though 'compare' implies a non-mutating action. The lack of explicit safety disclosure leaves room for ambiguity.

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, focused sentence that conveys the purpose and a performance note without redundancy. It is highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is sufficient for understanding the tool's function, even without an output schema. It states the metrics compared and the per-call efficiency. Minor gaps like output format are not critical given the simplicity of the comparison.

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 covers 100% of the parameter (channel_ids) with a clear description, so the baseline is 3. The description does not add extra semantic meaning beyond the schema, such as ordering or deduplication behavior, but no additional detail is necessary.

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 action (compare), the resource (channels), and the specific metrics (subscribers, average reach, ERR). It distinguishes itself from single-channel lookups by emphasizing side-by-side comparison.

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

Usage Guidelines3/5

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

The description implies usage for comparing multiple channels on key metrics, but does not explicitly state when to prefer this over alternatives like get_channel_stats or get_channel. The 'one channels/stat lookup per channel' hint suggests efficiency but lacks explicit guidance.

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