Skip to main content
Glama

Server Details

Search 45+ investor podcasts and read transcripts, TL;DRs, digests — bilingual EN/中文, keyless.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.3/5.0
Disambiguation3/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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 tools
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.

ParametersJSON Schema
NameRequiredDescriptionDefault
showNoShow id. Mutually exclusive with person.
personNoExact participant name. Mutually exclusive with show.

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoOutput 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
slugYesEpisode slug from a list or search result.
offsetNoCode-point offset into the section. Use the previous next_offset.
sectionNometa 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_charsNoCode points per window. Defaults to 20000 for Latin text and 14000 for Chinese or Japanese text, which cost about one token per character.

TDQS

A4.7/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
showNoShow id from bidclub_list_shows. Omit for the whole library.
limitNoEpisodes per page.
offsetNoRows to skip. Page with the returned pagination.next_offset.
source_langNoFilters 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

A4.4/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's 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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesQuery text. English words are stemmed; Chinese matches as a substring.
lenNoEpisode duration bucket.
showNoShow id from bidclub_list_shows.
timeNoRestrict to episodes published within this window.
personNoExact participant name, matched against the "person:" chips.
source_langNoFilters 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

A4.5/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 6 tool updates
    • First observedbidclub_download_links
    • First observedbidclub_feed_index
    • First observedbidclub_get_episode
    • First observedbidclub_list_episodes
    • First observedbidclub_list_shows
    • First observedbidclub_search_episodes

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources