Limzo Telegram Group Stats
Server Details
Read-only public Telegram group stats from Limzo: leaderboards, activity, levels. No API key.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Server Listing
- limzo-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.7/5 across 3 of 3 tools scored.
Each tool targets a distinct concern: get_global_stats for network-wide numbers, get_group_stats for a specific group, and list_groups for discovery and lookup. There is no functional overlap or ambiguity.
All tools follow a consistent verb_noun pattern: 'get_global_stats', 'get_group_stats', 'list_groups'. The naming is predictable and clear.
With only 3 tools, the server is concise and focused. While minimal, it covers the core operations for a stats-viewing server without feeling incomplete. The count is appropriate for its narrow scope.
The tools fully cover the domain of querying Telegram group stats: global overview, per-group details, and group discovery. There are no obvious gaps; the surface supports typical user workflows end-to-end.
Available Tools
3 toolsget_global_statsGet network-wide Limzo totalsARead-onlyInspect
Call this for network-wide numbers across all public Telegram groups tracked by Limzo (group count, messages, active users, replies, reactions, karma — 7-day and all-time) plus durable lifetime totals (messages analyzed, members tracked, spam messages removed) and the current top groups by Limzo Score. For finding a specific group, prefer list_groups.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| docs | No | Human-readable API documentation. |
| stats | Yes | |
| openapi | No | Machine-readable OpenAPI document for the REST API. |
| top_groups | No | Current top public groups by Limzo Score. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false. The description adds useful scope context: network-wide coverage, 7-day/all-time windows, durable lifetime totals, and top groups. It does not contradict annotations. Since the output schema exists, the lack of return format description is acceptable.
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?
The description is a single, front-loaded sentence listing key outputs, followed by one concise sentence for guidance. No wasted words; every clause adds information.
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?
The tool is simple (0 params) and has an output schema. The description thoroughly covers the returned data (metrics, timeframes, totals, top groups) and provides usage context. It is complete and self-sufficient.
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?
There are zero parameters and schema description coverage is 100% (vacuously). No parameter explanation is needed. The description adds meaning about what data is returned, which is beyond the empty schema.
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 ('Call this for network-wide numbers') and clearly resources ('all public Telegram groups tracked by Limzo'), with an enumerated list of metrics. It is distinct from siblings: 'For finding a specific group, prefer list_groups' explicitly differentiates it.
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?
It provides an explicit alternative: 'For finding a specific group, prefer list_groups.' This gives clear when-to-use/when-not-to-use guidance and names the sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_group_statsGet public stats for one Telegram groupARead-onlyInspect
Call this when the user asks about the activity, health, leaderboard, mood, or trends of a specific Telegram group tracked by Limzo. slug is the last part of the group's public page URL, limzo.com/s/ (e.g. "hipo"). Returns the curated limzo.public_stats/v1 JSON: messages, replies, active members, daily series, top members, mood, reactions, language mix, the Limzo Levels ladder (lifetime XP + badge tiers), and weekly-league standings when the group has the league enabled. Optional range: 7d (default), 30d, all — the wider ranges only serve real data for groups on a paid plan and otherwise silently fall back to 7d, so check range.key in the result. Never includes verbatim member messages. For a private group (one with no public t.me handle) the member identities, the group description and member_count are withheld too: aggregates plus an anonymised leaderboard are all it returns.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The group's public slug — the last part of its limzo.com/s/<slug> URL. | |
| range | No | Stats window. Defaults to 7d. 30d/all require the group's paid plan; free groups silently fall back to 7d. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| docs | No | Human-readable API documentation. |
| group | Yes | |
| range | Yes | The range actually served — compare `key` with what you requested to detect the plan fallback. |
| stats | Yes | |
| schema | Yes | |
| openapi | No | Machine-readable OpenAPI document for the REST API. |
| generated_at | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond readOnlyHint=true, the description discloses important behavioral details: 30d/all silently fall back to 7d for free groups, range.key should be checked, verbatim member messages are never included, and private groups have member identities, description, and member_count withheld. This gives the agent realistic expectations about output and limitations.
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?
Every sentence carries selection, parameter, behavior, or privacy information. The trigger is front-loaded, followed by slug, return contents, range caveat, and privacy constraints. The output enumeration is dense but useful and each clause earns its place.
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?
The definition covers selection, parameter semantics, return shape, paid-plan fallback, and privacy handling, which is more than enough for reliable invocation. It does not mention error behavior for invalid or nonexistent slugs, but the detailed schema and output description make that a minor omission.
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?
Schema coverage is 100%, so the schema already documents slug and range. The description adds value by explaining the slug URL pattern and, more importantly, by telling the agent to verify range.key because wider ranges may silently fall back. That operational guidance goes beyond the schema.
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 opens with 'Call this when the user asks about the activity, health, leaderboard, mood, or trends of a specific Telegram group tracked by Limzo', naming the exact resource and scope. It is clearly distinguishable from get_global_stats and list_groups because it emphasizes a single Telegram group and its stats.
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?
The description gives explicit trigger conditions ('Call this when...') and a precise scope, so an agent knows when this tool is appropriate. It does not explicitly name the sibling alternatives or state when to choose them, but the 'specific Telegram group' scoping is strong enough to avoid obvious confusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_groupsList or search public Telegram groupsARead-onlyInspect
Call this to discover Telegram groups tracked by Limzo — to browse the directory, filter by language, or find a group's slug for get_group_stats. Optional query filters case-insensitively over group title, username, slug, and description. Optional lang (ISO 639-1, e.g. "fa", "es") keeps only groups where that language is a meaningful share of what members write — the way to answer "find active Persian/Spanish groups". Omit both to list the top groups by Limzo Score. The directory covers PUBLIC groups only — a group with no t.me handle is never listed, though it may still have a /s/ page. Each row carries a language mix (primary language + top languages as percentages); rows also include slug, title, username, plan, member_count, 7-day messages and active members, score and page URLs, plus total_matches so you can tell when more groups matched than were returned.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | ISO 639-1 language code (e.g. "fa", "es", "en"). Keeps only groups where that language is a meaningful share of the group. | |
| limit | No | Maximum groups to return. Defaults to 20, capped at 50. | |
| query | No | Keyword matched case-insensitively against group title, username, slug, and description. Omit to list the top groups by Limzo Score. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| docs | No | Human-readable API documentation. |
| lang | No | The applied ISO 639-1 language filter, or null when not filtering by language. |
| query | No | The normalized search keyword, or null when listing top groups. |
| groups | Yes | |
| openapi | No | Machine-readable OpenAPI document for the REST API. |
| total_matches | Yes | Groups that matched, before the limit was applied. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, and the description adds rich behavioral context: the directory only lists public groups with t.me handles, groups without handles may still have /s/ pages, language filtering uses 'meaningful share of what members write', and total_matches indicates when more results matched than were returned. This goes well beyond the annotations.
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?
The description is long but every sentence carries useful information. It is front-loaded with purpose, then filters, then key scope constraints, then return-row details. No filler or repetition.
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?
Given an output schema exists, the description need not enumerate return values, but it still summarizes the row contents and total_matches behavior. It covers use cases, filter semantics, the public-only boundary, and interaction with a sibling tool, making it complete for an agent to select and call correctly.
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?
Schema description coverage is 100%, so baseline is 3. The description adds value by explaining what 'meaningful share' means for lang, clarifying that query matches title/username/slug/description, and noting that omitting both query and lang lists top groups by Limzo Score. It does not address the limit parameter, but the schema already fully covers it.
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: discover Telegram groups tracked by Limzo. It enumerates concrete use cases (browse directory, filter by language, find a slug) and explicitly distinguishes itself from the sibling get_group_stats by positioning the tool as the way to obtain the slug for that tool.
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?
The description gives clear usage context: call this to browse, filter, or find slugs, and explains the public-only scope. It does not explicitly state when not to use it or mention get_global_stats as an alternative, so it stops short of full when/when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceRead public Telegram channels from AI agents — channel metadata, posts, comments, and search. No MTProto, no Telethon, no api_id.MIT
- FlicenseNot gradedqualityCmaintenanceRead-only MCP server for Telegram channels. Provides access to posts, comments, reactions, and aggregated statistics via MTProto.17
- FlicenseNot gradedqualityBmaintenanceRead-only MCP server that exposes retrieval tools over a Telegram chat archive, including archive overview, full-text search with Russian morphology, aggregates, message retrieval, and local context. It lets LLM agents answer questions from chat history without syncing Telegram, downloading files, or modifying the index.