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.
Each tool targets a distinct data need: ranked channel discovery, exact channel lookup, marketplace listings, marketplace stats, post-content search, and catalog entity search. Even the two search tools are clearly separated by whether they search post content or Telegram catalog entries.
Names are readable and consistently snake_case, but they mix verb-led names like search_posts and search_telegram with noun-led names like channel_stats, market_listings, market_stats, and best_channels_by_category. The market_* and search_* pairs are helpful, but there is no uniform verb_noun pattern across the set.
Six tools is a well-scoped size for a Telegram catalog and search server. Each tool earns its place by covering channel discovery, channel lookup, post search, and marketplace data without redundancy.
The read-only surface is largely complete: search, top channels, exact stats, and marketplace stats/listings are all covered. A direct way to retrieve recent posts for a specific channel or enumerate all categories would close the remaining minor gaps.
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.4M+ channels, 274k+ group chats, 193k+ 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 provided, the description carries the full burden. It usefully discloses that no auth is required, that the search is over a public catalog, and that it returns counts, categories, and trust scores. However, it does not describe result ordering, response shape, lack of results behavior, or other runtime traits, leaving some behavioral gaps.
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?
Two dense sentences communicate the entire value proposition, scope, auth requirement, and primary parameter guidance. There is no filler and the most important information is front-loaded in the first sentence.
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 there is no output schema and no annotations, the description does well by stating the catalog scope, what data the results include, and the auth context. It is slightly incomplete because it does not mention result ordering or explicitly route to related sibling tools like search_posts, but it is sufficient for an agent to call the tool correctly for most cases.
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 the schema already documents query, type, and limit. The description adds a small usage hint with 'Use type to restrict to one entity kind,' which reinforces rather than substantially extends the schema. This matches the baseline-3 case where the schema does most of the work.
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?
States a specific action ('Full-text search'), a clear resource (the tgden catalog), cardinality (1.4M+ channels, 274k+ chats, 192k+ bots), and the kind of results returned (subscriber counts, categories, trust scores). It does not explicitly name a sibling alternative or contrast itself with search_posts, so it stops just short of a top score.
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?
Gives clear context for when the tool is appropriate: no Telegram account needed, it searches the public catalog, and it finds communities the user has NOT joined. It also gives a direct actionable instruction to use the type parameter to restrict entity kind, but does not explicitly state when not to use it or mention any alternative tool such as search_posts.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to search and act on Telegram conversations, groups, channels, files, and links, with semantic search, AI-powered knowledge extraction, human-in-the-loop approvals, and PostgreSQL/pgvector persistence.Apache 2.0
- AlicenseNot gradedqualityCmaintenanceReads 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.1MIT
- AlicenseNot gradedqualityBmaintenanceRead-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.MIT
Your Connectors
Sign in to create a connector for this server.