Skip to main content
Glama
theYahia

@theyahia/tgstat-mcp

by theYahia

get_post_stats

Retrieve a Telegram post's engagement metrics, including views, forwards, and reactions over time, by providing the channel ID and message ID.

Instructions

Get a post's engagement dynamics: views, forwards and reactions over time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
post_idYesPost ID in channelId/messageId form, e.g. 123/456

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.0

TDQS

A4.1/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 burden. The term 'Get' implies a read-only operation, but it does not explicitly state side effects, rate limits, or any other behavioral details. This is adequate but not overly transparent.

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 with no superfluous words. It efficiently conveys the tool's purpose and key outputs.

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?

For a tool with one required parameter and no output schema, the description sufficiently covers what the tool does and what it returns. No critical information is missing.

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 schema description for post_id is fully covered (100%), providing the format and example. The tool description adds no additional parameter details, so the baseline score of 3 is appropriate.

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?

Clearly states the action ('Get') and the specific resource ('a post's engagement dynamics') with explicit detail on what is returned (views, forwards, reactions over time). This distinguishes it from sibling tools like get_post (which likely returns post content) and get_channel_stats.

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?

Provides clear context that this tool is for engagement metrics over time, which implicitly guides when to use it. However, it does not explicitly mention alternatives or when not to use it, so it falls just short of a 5.

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