tgden — Telegram catalog & search
Server Details
Search 1.2M+ Telegram channels, 245k+ chats, 160k+ bots — no account, no key, no install.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- JustJuice55/tgden-api
- GitHub Stars
- 0
- Server Listing
- tgden
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 3.9/5 across 6 of 6 tools scored.
Tools are mostly distinct: search_posts vs search_telegram differ in scope (posts vs catalog), and market_listings vs market_stats separate data from statistics. best_channels_by_category and search_telegram both find channels, but the former is ranked by category while the latter is full-text search, so the overlap is manageable.
Names use consistent snake_case and descriptive terms. The conventions are similar (e.g., search_posts, search_telegram; market_listings, market_stats), though best_channels_by_category breaks the verb_noun pattern slightly. Still, the style is uniform and readable.
With 6 tools, the server is well-scoped for a Telegram catalog and search service. Each tool covers a distinct purpose without redundancy or bloat, falling comfortably in the ideal range.
The set covers channel discovery, channel stats, post search, catalog search, and marketplace queries. Minor gaps include no detail tool for groups/bots (only channel_stats) and no direct post retrieval, but these are not core to the stated purpose of catalog & search.
Available Tools
6 toolsbest_channels_by_categoryBest Telegram channels for a categoryAInspect
Top Telegram channels ranked by subscribers for a given category. Use this when someone asks 'best telegram channels for [topic]' or 'top channels about [subject]'. Returns channel name, @username, subscriber count, language and description.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10) | |
| category | Yes | Category slug: crypto, news, tech, ai, finance, entertainment, gaming, marketing, education, sports, music, politics, business, food, travel, health, science, movies, anime, books |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It clearly states the ranking criterion (subscriber count) and lists the return fields (channel name, @username, subscriber count, language, description). It does not mention error handling, rate limits, or authentication, but for a simple read-only listing tool this is sufficient.
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 only two sentences long, front-loaded with the core behavior and immediately followed by usage examples and return fields. Every sentence earns its place with no redundant or vague wording.
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?
For a tool with only 2 parameters and no output schema, this description fully covers what the tool does, when to use it, and what it returns. The schema handles parameter details, making the combined set complete for straightforward usage.
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?
The input schema already provides full descriptions for both parameters ('category' with allowed values, 'limit' with min/max and default). The description adds no additional semantics beyond what the schema already covers, so a baseline score of 3 is appropriate.
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 clearly states the tool's function: returning top Telegram channels ranked by subscribers for a given category. It distinguishes itself from sibling tools like search_telegram by focusing on category-specific ranking, making its purpose unambiguous.
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 explicitly says 'Use this when someone asks 'best telegram channels for [topic]' or 'top channels about [subject]',' giving clear trigger scenarios. However, it does not mention when not to use it or directly reference alternative sibling tools, leaving a slight gap in exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
channel_statsChannel details and statsBInspect
Full record for one channel by @username: subscribers, category, language, trust score, description.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Channel @username (with or without @) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It does specify the nature of the operation (retrieving a full record), but it does not disclose potential side effects, such as whether the channel must exist, what happens when a username is not found, or any rate limiting or authorization requirements. This is thinner than expected for a tool with no annotation support.
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, information-dense sentence that front-loads the core purpose ('Full record for one channel') and compresses the returned fields into a colon-separated list. There is no wasted text, and every word contributes to understanding the tool's function.
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?
For a one-parameter read-only lookup, the description is largely sufficient. It clearly identifies the input (username) and the output structure (subscribers, category, language, trust score, description). There is no output schema, so listing these fields is valuable. However, it omits edge-case behavior (e.g., nonexistent channel) and any prerequisites, though given the simplicity of the tool this is a minor gap. Overall, it feels complete for the tool's scope.
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?
The input schema has 100% coverage: the only parameter, 'username', is described as 'Channel @username (with or without @)'. The description's mention of '@username' aligns with the schema but adds no new semantic detail. Since the schema is complete and unambiguous, a baseline of 3 is appropriate.
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 clearly states a specific verb-plus-resource: 'Full record for one channel by @username,' and enumerates the returned attributes (subscribers, category, language, trust score, description). This unambiguously distinguishes it from sibling tools like best_channels_by_category or market_listings, which serve different resources or purposes.
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 no explicit guidance on when to use this tool versus alternatives. It implies usage for fetching a single channel's details by username, but it does not mention when not to use it, any prerequisites, or reference sibling tools. Sibling names are present in context, but the description does not leverage them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
market_listingsBrowse marketplace listingsAInspect
Fresh classified listings extracted from Telegram groups across the OTC network — Thailand (th), UAE (ae), Turkey (tr), Vietnam (vn), Georgia (ge), USA (us), Russia (ru): rent, sale, services, jobs, exchange. Filter by country and listing type.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Listing type filter ('wanted' = demand: сниму/куплю/ищу, any kind) | |
| limit | No | Max results (default 10) | |
| country | No | OTC country code |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description must disclose behavior. It mentions freshness, source (Telegram), and filterability, but does not explicitly state it is read-only, nor describe pagination, rate limits, or output structure. This is a moderate coverage.
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?
Single sentence conveys source, scope, and filters, but lists countries and types that already exist in the schema, causing mild redundancy. Still compact and front-loaded.
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?
For a simple listing tool, the description covers source, scope, and filters. But without annotations or output schema, it lacks an explicit read-only statement and return format details, leaving some uncertainty for an agent.
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 fully describes all three parameters with enums and default values. Description only repeats that filtering by country and type is possible, adding little beyond 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?
Description clearly states the tool browses fresh classified listings from Telegram groups across specified countries, with filtering by type and country. It distinguishes itself from sibling tools by focusing on marketplace ads rather than stats or generic post search.
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?
Provides clear context about the data source and filtering options, implying use for browsing classifieds. However, it does not explicitly mention when to use this over siblings like search_posts or market_stats, nor any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
market_statsMarketplace totalsAInspect
Listing totals by country and type for the OTC marketplace (th·ae·tr·vn·ge·us·ru).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It scopes the data source and suggests a read-only aggregation operation. However, it does not disclose return format, pagination, or any limitations, leaving some uncertainty for an agent.
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 sentence with no redundant content. It front-loads the core action ('Listing totals') and scopes it efficiently. There is no wasted language or unnecessary detail.
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?
No output schema exists, so the description needs to convey the response structure. It specifies grouping by country and type but does not state the exact shape or whether the response is a list or mapping. For a zero-parameter tool, this is a moderate gap in completeness.
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?
The tool has zero parameters, and the input schema is empty. The description adds context about the output dimensions (country and type), which is sufficient given the absence of parameters. This aligns with the baseline expectation for parameterless tools.
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 clearly states the tool provides listing totals for the OTC marketplace, grouped by country and type. The specific country list and marketplace scope differentiate it from sibling tools like market_listings. However, 'Listing totals' is slightly ambiguous as a verb phrase, making it less crisp than it could be.
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?
No explicit guidance is given about when to choose this tool over siblings. The purpose statement implies it is for aggregated totals rather than raw listings, but no alternatives or exclusions are mentioned. There is no clear context about use cases or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_postsSearch recent channel postsAInspect
Full-text search over recent posts from catalogued channels (1k+ view posts). Returns text snippets, channel and view counts.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10) | |
| query | Yes | Search query |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses the operation type (full-text search, implying read-only), the scope limitation (catalogued channels, 1k+ view posts), and what is returned. It does not mention ordering or pagination, but for a search tool this 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 sentence, front-loaded with the core functionality, followed by a succinct mention of return values. No redundant information or filler.
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?
For a simple tool with two parameters and no output schema, the description adequately covers the necessary context: what the tool searches, the constraints (catalogued, 1k+ views, recent), and what the response includes. No critical information is missing.
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?
The input schema has 100% description coverage for both parameters. The description adds no additional meaning beyond the schema; it does not explain query syntax or limit behavior. The baseline of 3 applies because the schema does the heavy lifting.
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 clearly states a specific action ('Full-text search') on a specific resource ('recent posts from catalogued channels (1k+ view posts)') and lists return items ('text snippets, channel and view counts'). It distinguishes from siblings like 'search_telegram' by narrowing to channel posts with a view threshold.
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 provides clear context for when to use this tool: searching recent posts from catalogued channels with at least 1k views. It does not explicitly mention alternatives or exclusions, but the scope is well-defined enough to infer appropriate usage relative to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_telegramSearch Telegram channels, chats and botsAInspect
Full-text search over the tgden catalog (1.2M+ channels, 250k+ group chats, 162k+ bots) with subscriber/member counts, categories and trust scores. Needs no Telegram account — this is the public catalog, so it finds communities the user has NOT joined. Use type to restrict to one entity kind.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Entity kind filter (default all) | |
| limit | No | Max results (default 10) | |
| query | Yes | Search query, any language |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses key behaviors: no authentication needed, public catalog scope, inclusion of subscriber/member counts, categories, and trust scores. It does not mention pagination, sorting, or rate limits, but for a search tool this is acceptable coverage.
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 three sentences long, front-loaded with the core purpose, then scope, then a usage tip. Every sentence provides value with no repetition or fluff, making it highly efficient and readable.
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 the lack of output schema and annotations, the description does well to mention the resource, scope, data fields included, and auth-free access. The limit parameter is documented in schema, so not repeating it is fine. Slight gaps around result format and sorting prevent a perfect score, but overall it is complete enough for confident use.
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?
The schema already describes all three parameters with 100% coverage, including the enum for type and min/max for limit. The description adds a small hint to use type for filtering, reinforcing schema info but not adding substantial new meaning. Thus baseline 3 is appropriate.
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 clearly states it performs full-text search over the tgden catalog with counts, categories, and trust scores. It distinguishes from sibling tools like search_posts by specifying the exact resource and scope. The clarification that it finds communities the user has NOT joined adds precise purpose.
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 explicitly notes that no Telegram account is needed and that this searches the public catalog for unjoined communities, giving clear context for when to use it. The guidance to use 'type' to restrict entity kind is also helpful. However, it does not mention when not to use it or alternatives that might be more appropriate.
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
- Alicense-qualityBmaintenanceRead public Telegram channels from AI agents — channel metadata, posts, comments, and search. No MTProto, no Telethon, no api_id.Last updatedMIT
- Alicense-qualityCmaintenanceReads public Telegram channel pages and exposes them as MCP tools over Streamable HTTP/JSON-RPC, enabling retrieval of channel info, latest posts, and search without Telegram API credentials.Last updatedMIT
- Alicense-qualityBmaintenanceRead-only public Telegram group statistics from Limzo: search tracked communities and pull leaderboards, activity trends, member levels, and network-wide totals. No API key or account needed.Last updatedMIT
- Flicense-qualityDmaintenanceMCP server for searching an archive of Solana developer Telegram chats. Enables hybrid search across ~94K messages from Divers and Solana Dev RU chats, with tools for search, stats, and history.Last updated1
Your Connectors
Sign in to create a connector for this server.