bidclub
Server Details
Search 45+ investor podcasts and read transcripts, TL;DRs, digests — bilingual EN/中文, keyless.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Most tools are distinct, but list_episodes and feed_index both return episode metadata with filtering, creating ambiguity. get_episode, search_episodes, and download_links are clearly different.
The pattern is consistently bidclub_<verb>_<noun> for five tools (download_links, get_episode, list_episodes, list_shows, search_episodes). bidclub_feed_index breaks the verb pattern, being a noun phrase.
Six tools is well within the ideal 3-15 range. Each tool serves a distinct retrieval need for the library, covering browsing, searching, fetching, and downloading.
The domain is a read-only catalogue and content retrieval API. The set covers listing shows and episodes, searching, fetching content sections, and generating download links. No obvious missing operations for the stated purpose.
Available Tools
6 toolsbidclub_download_linksDownload linksAInspect
Build the download URLs for an episode or a whole show without fetching anything. Hand these to the user, or fetch one yourself when you need a complete transcript in a single request instead of paging it through bidclub_get_episode. Exactly one of slug or show is required.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Edition to request in the generated URLs. orig keeps each artifact in its source language. | orig |
| show | No | Show id, for the whole-show zip archives. Mutually exclusive with slug. | |
| slug | No | Episode slug. Mutually exclusive with show. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It discloses that the tool does not fetch anything (no side effects), that the generated URLs are for download, and that using one yields a complete transcript in one request. It stops short of detailing URL format, authentication, or expiration, but for a URL-builder tool, the core behavioral traits are clearly conveyed.
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 two sentences, immediately front-loaded with the verb and resource. Every clause earns its place: the no-fetch note, the use-case contrast with bidclub_get_episode, and the required-parameter condition. No redundancy 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?
Given 3 simple parameters, no output schema, and no annotations, the description covers the essential context: what the tool does, when to use it, and the key constraint. It could have specified the output format (e.g., 'returns a JSON object of URLs'), but the absence is not critical since the purpose is clear.
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 documents all three parameters, so baseline is 3. The description adds value by clarifying the mutual exclusivity of slug and show ('Exactly one... required') and linking each to 'episode' vs 'whole show', which the schema does not explicitly state. This extra semantics raises the score.
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 action ('Build the download URLs'), the resource ('an episode or a whole show'), and the key property ('without fetching anything'). It also distinguishes itself from siblings by contrasting with bidclub_get_episode, making its purpose unmistakable.
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 explicit usage guidance: hand the URLs to the user, or fetch one to get a complete transcript in a single request instead of paging through bidclub_get_episode. It also states the required condition ('Exactly one of slug or show is required'), giving clear direction on when to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bidclub_feed_indexFeed indexAInspect
The slim catalogue of every episode — one row each, metadata only. Narrow it with show or person; passing both is an error. Large responses are truncated to the newest rows with a note, so filter rather than paging.
| Name | Required | Description | Default |
|---|---|---|---|
| show | No | Show id. Mutually exclusive with person. | |
| person | No | Exact participant name. Mutually exclusive with show. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses important behaviors: large responses are truncated to the newest rows with a note, and mutually exclusive parameters cause an error. It also states 'metadata only', clarifying that full episode content is not returned. This is valuable beyond the schema.
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?
Three concise sentences with no wasted words. The purpose is front-loaded, and each sentence adds critical information: what it is, how to filter, and the truncation caveat.
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 description covers the tool's purpose, filtering, error condition, and truncation. Given the simple schema and no output schema, it leaves out only minor details like the exact metadata fields returned and sorting behavior, which are not essential for a basic index tool.
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% and both parameters have descriptions. The description adds extra semantics: the mutual exclusivity requirement and the truncation behavior that makes filtering important. This goes beyond the schema's basic parameter definitions.
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 identifies the tool as a feed index: a one-row-per-episode, metadata-only catalog. It differentiates itself from sibling tools like list_episodes or search_episodes by emphasizing 'slim' and 'metadata only', and mentions the ability to narrow by show or person. However, it does not explicitly contrast with any specific sibling.
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 explicit usage guidance: narrow with show or person, warns that passing both is an error, and advises filtering rather than paging due to truncation. This gives clear operational context, though it does not name alternative tools or state when not to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bidclub_get_episodeGet episode contentAInspect
Read one section of an episode. Long sections page deterministically: when the result says truncated: true, call again with offset set to next_offset and concatenate content_md until next_offset is null. Prefer tldr or digest — a transcript can exceed 100,000 characters and is rarely worth paging in full. lang selects the OUTPUT edition, not a catalogue filter; transcripts exist only in the episode's source language, so requesting a different lang for section=transcript always returns the source with lang_fallback: true.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Output edition. A translated summary is served only when both the TL;DR and the digest translations are complete; otherwise the source edition comes back with lang_fallback: true. | EN |
| slug | Yes | Episode slug from a list or search result. | |
| offset | No | Code-point offset into the section. Use the previous next_offset. | |
| section | No | meta returns the row with no long markdown at all; tldr is the bullet summary; digest is the structured writeup; transcript is the full text. | digest |
| max_chars | No | Code points per window. Defaults to 20000 for Latin text and 14000 for Chinese or Japanese text, which cost about one token per character. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and excels: it discloses deterministic pagination (truncated: true, next_offset), instructs to concatenate content_md until next_offset is null, and explains lang is an output edition, not a filter, with lang_fallback behavior. This goes far beyond what a schema conveys.
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?
Three dense sentences, each earning its place: the first states the core action, the second explains the pagination protocol, and the third clarifies lang semantics and size warning. Front-loaded with 'Read one section', no filler or repetition of schema details.
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 5 parameters, no output schema, and pagination complexity, the description is remarkably complete. It explains the return fields (truncated, next_offset, content_md), paging mechanics, section size differences, and lang fallback, covering everything an agent needs to invoke and process results 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 coverage is 100% with solid per-parameter descriptions, so the baseline is 3. The description adds meaningful semantics beyond the schema: it explains the paging contract between offset, next_offset, and content_md, and clarifies the lang fallback behavior for transcripts, which the schema only hints at.
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 'Read one section of an episode', a specific verb+resource that clearly distinguishes this from sibling tools like lists, search, and download links. It also specifies the section types (tldr, digest, transcript) and the episode slug parameter, leaving no ambiguity about scope.
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 gives explicit guidance to 'Prefer tldr or digest' and warns that a transcript can exceed 100,000 characters and is rarely worth paging in full. While it doesn't directly contrast sibling tools, it clearly advises on section selection and warns against requesting a different lang for transcripts, providing practical when-to-use and when-not-to-use context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bidclub_list_episodesList episodesAInspect
List episodes newest first, optionally narrowed to one show. Returns metadata only — titles, deks, dates, durations, participant chips and source links — never the digest or transcript. Use bidclub_get_episode for content.
| Name | Required | Description | Default |
|---|---|---|---|
| show | No | Show id from bidclub_list_shows. Omit for the whole library. | |
| limit | No | Episodes per page. | |
| offset | No | Rows to skip. Page with the returned pagination.next_offset. | |
| source_lang | No | Filters by the episode's ORIGINAL language. Chinese digests exist for most English-source episodes, so do NOT set source_lang=ZH just because you want Chinese output — use the lang parameter on bidclub_get_episode instead. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so well: it discloses 'metadata only — titles, deks, dates, durations, participant chips and source links — never the digest or transcript.' It also states the ordering ('newest first') and optional narrowing, giving a clear behavioral contract.
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 sentences, front-loaded with the action and key output. Each sentence is informative without fluff, and the pointer to the sibling tool is efficiently integrated.
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 description covers what is returned and what is not, plus points to the content tool. Pagination is left to the schema's offset description, which is acceptable. For a listing tool with optional parameters, this is nearly complete, missing only explicit mention of pagination behavior in prose.
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 baseline is 3. The description doesn't add new parameter details beyond the schema, but it reinforces the optional show filter. No extra semantics are needed given the schema's thorough descriptions.
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: 'List episodes newest first, optionally narrowed to one show.' It specifies ordering, filtering scope, and explicitly differentiates from content retrieval by noting it returns metadata only and points to bidclub_get_episode for content.
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 an explicit alternative: 'Use bidclub_get_episode for content.' It implies this tool is for browsing metadata rather than retrieving full episodes. Though it doesn't explicitly contrast with search or list_shows, the guidance is clear enough for common use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bidclub_list_showsList showsAInspect
List every show in the BidClub library with its id, display name, source language, hosts, and source links. Start here when you need a show id for the show parameter of the other tools.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of disclosing behavior. It clearly states that the tool lists every show (i.e., no filtering) and specifies what data it returns. While it doesn't explicitly say 'read-only,' the verb 'List' strongly implies a non-mutating operation, which is sufficient for this simple listing tool.
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. The first sentence delivers the core action and return fields, and the second sentence provides usage guidance. Every word earns its place; there is no fluff 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 the tool's simplicity (no parameters, no output schema, no complex behavior), the description fully covers what the tool does, what it returns, and when to use it. No additional context is necessary for an agent to select and invoke this tool 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?
The tool has zero parameters, so the schema is empty and the baseline is 4. The description adds value by indicating that no parameters are needed ('List every show') and by describing the output fields, which is meaningful context 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 opens with a specific verb ('List') and resource ('every show in the BidClub library'), and enumerates the exact fields returned (id, display name, source language, hosts, source links). This clearly distinguishes it from sibling tools like list_episodes or search_episodes, which focus on episodes rather than shows.
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 explicitly states when to use this tool: 'Start here when you need a show id for the show parameter of the other tools.' This gives the agent a clear trigger condition and positions the tool as the preliminary lookup step before using siblings like bidclub_list_episodes or bidclub_get_episode.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bidclub_search_episodesSearch episodesAInspect
Full-text search across titles, deks, TL;DRs, digests and transcripts, with a substring sweep that handles Chinese queries the tokenizer cannot segment. Returns up to 20 metadata rows, never content. When the response carries partial: true the query only covered the newest searched_recent episodes, so say so rather than reporting an absence.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Query text. English words are stemmed; Chinese matches as a substring. | |
| len | No | Episode duration bucket. | |
| show | No | Show id from bidclub_list_shows. | |
| time | No | Restrict to episodes published within this window. | |
| person | No | Exact participant name, matched against the "person:" chips. | |
| source_lang | No | Filters by the episode's ORIGINAL language. Chinese digests exist for most English-source episodes, so do NOT set source_lang=ZH just because you want Chinese output — use the lang parameter on bidclub_get_episode instead. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavior: it explains the substring sweep for Chinese, the 20-row metadata limit, and the partial: true response flag. This goes beyond standard expectations and gives the agent critical handling instructions.
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 well-structured sentences with no filler. The primary action is front-loaded, and every clause contributes functional detail, from search fields to return limits and partial-result handling.
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?
Despite having no output schema or annotations, the description covers the key aspects an agent needs: what is searched, what is returned, the result limit, and how to handle partial results. This is sufficient for correct invocation and result interpretation.
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 six parameters with 100% coverage, so the description adds only marginal value for 'q' via 'substring sweep'. The extra context on substring handling is useful but does not substantially enhance parameter understanding 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 'Full-text search across titles, deks, TL;DRs, digests and transcripts', clearly stating the verb ('search') and the resources. It differentiates itself from sibling tools like get_episode and list_episodes by specifying it returns metadata rows rather than content.
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 operational context, including how to interpret partial results ('say so rather than reporting an absence'). However, it does not explicitly contrast with sibling tools or state when not to use this tool, so it earns a 4 rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- First observed
bidclub_download_links - First observed
bidclub_feed_index - First observed
bidclub_get_episode - First observed
bidclub_list_episodes - First observed
bidclub_list_shows - First observed
bidclub_search_episodes
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, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Search and analyze 50,000+ hours of business podcast transcripts, entities, and speakers.
Search and read AI summaries of 75,000+ podcast episodes across 130+ mostly long-form shows.
Financial podcast intelligence platform — sentiment, narrative, and asset signals from 100+ podcasts
Search, read, and traverse 3,800+ posts on AI, energy, policy, games, and investing as a graph.
Related MCP Servers
- AlicenseAqualityCmaintenanceNarrative & signal intelligence for AI agents: crypto/AI/macro convergence & divergence.21MIT
- FlicenseAqualityDmaintenanceSearch and retrieve transcripts from 488 episodes of the Big Technology Podcast, enabling queries on tech topics and full episode access via Claude.4-
- FlicenseAqualityDmaintenanceProvides real-time Web3 research digest with macro news, KOL sentiment, market data, and personalized on-chain wallet analysis through four AI tools.4-
- AlicenseAqualityDmaintenanceProvides McKinsey-style strategy intelligence for real estate by enabling AI assistants to search podcast transcripts, access industry benchmarks, and apply consulting frameworks like 2×2 matrices and issue trees to analyze business situations.7MIT