Skip to main content
Glama
theYahia

@theyahia/tgstat-mcp

by theYahia

get_post

Retrieve full details of any Telegram post, including views, forwards, reactions, and text, by providing the post ID in channelId/messageId format.

Instructions

Get details of a single post: views, forwards, reactions, text.

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. Changed2 schema fields changedv2.0.0
    • changedInput schema / properties / post_id / description
      Previous value: -"ID поста (формат channelId/messageId)"New value: +"Post ID in channelId/messageId form, e.g. 123/456"
    • addedInput schema / properties / post_id / minLength
      Added value: +1
  2. First observedv1.0.1

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are present, so the description must convey behavioral traits like read-only nature, error handling, or rate limits. It does not; it only lists output fields. The absence of any mention of side effects or failure modes leaves the agent without critical context, especially since the operation is likely a read but is never stated.

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 includes the essential information without any redundant phrases or filler. It is well-structured and immediately understandable.

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?

For a simple get operation with one parameter, the description is reasonably complete: it specifies the object type and the fields returned. It does not mention error responses or edge cases, but given the simplicity and the absence of an output schema, it provides sufficient context for an agent to know what to expect.

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 already fully describes the only parameter (post_id) with an example and format. The tool description adds no extra meaning about the parameter, so it does not go beyond the schema. This 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 purpose: 'Get details of a single post' and enumerates the specific data returned (views, forwards, reactions, text). This is distinct from sibling tools like get_post_stats or get_channel_posts, which focus on aggregates or channel-level data.

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 when to use the tool—when details of one specific post are needed—but does not explicitly contrast it with alternatives or mention any prerequisites. There is no direct 'use this instead of X' guidance, so it falls to implied usage rather than explicit direction.

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