Skip to main content
Glama

Server Details

An MCP server that provides tools to discover and retrieve podcast episodes transcripts.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: listing recent episodes, fetching transcripts, searching episodes, and providing feedback. No overlapping functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, making them predictable and easy to understand.

Tool Count5/5

Four tools cover the core functionalities of a podcast server (list, search, transcript, feedback) without being excessive or insufficient.

Completeness5/5

The tool set provides essential operations for browsing and retrieving podcast transcripts, plus user feedback. No obvious missing operations for the intended domain.

Available Tools

4 tools
get_latest_episodesGet Latest EpisodesA
Read-onlyIdempotent
Inspect

Return the most recent transcript-ready episodes across the full podcast catalog.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of episodes to return. Must be between 1 and 50.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of episodes returned.
episodesYesMatching transcript-ready episodes.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint, idempotentHint, and destructiveHint. The description adds that episodes are 'transcript-ready' but doesn't disclose ordering or edge cases, so it adds moderate value beyond annotations.

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 a single concise sentence with no unnecessary words, front-loading the key action and scope.

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?

With a single parameter fully documented in the schema and an output schema available, the description sufficiently covers the tool's purpose. It could mention ordering but is otherwise complete.

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 input schema has 100% coverage with a clear description of the 'limit' parameter. The description adds no additional meaning, so baseline 3 is appropriate.

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 it returns the most recent transcript-ready episodes across the full podcast catalog, with a specific verb and resource, and distinguishes from siblings like get_transcript and search_episodes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage as a quick listing tool for recent episodes with transcripts, but lacks explicit guidance on when to use it versus alternatives, such as when to use search_episodes for filtering.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_transcriptGet TranscriptA
Read-onlyIdempotent
Inspect

Fetch a bounded transcript chunk for a specific episode using its show and episode GUIDs. Use next_cursor to continue reading.

ParametersJSON Schema
NameRequiredDescriptionDefault
cursorNoZero-based character offset into the transcript. Use the `next_cursor` returned by a prior get_transcript call to fetch the next chunk.
max_charsNoTarget maximum number of transcript characters to return. Chunks prefer natural boundaries and may be slightly shorter. Must be between 100 and 20000.
show_guidYesPodcast show GUID returned by `search_episodes` or `get_latest_episodes`.
episode_guidYesEpisode GUID returned by `search_episodes` or `get_latest_episodes`.

Output Schema

ParametersJSON Schema
NameRequiredDescription
textYesTranscript chunk text.
char_endYesExclusive zero-based end offset of this chunk in the complete transcript.
has_moreYesWhether another get_transcript call is needed to continue reading.
show_guidYesPodcast show GUID requested by the client.
char_startYesInclusive zero-based start offset of this chunk in the complete transcript.
next_cursorNoCursor to pass to the next get_transcript call, or null at the end.
total_charsYesTotal character count of the complete transcript text.
episode_guidYesPodcast episode GUID requested by the client.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and idempotentHint=true. Description adds value by explaining the bounded chunk retrieval and cursor-based continuation, which are behavioral traits beyond annotations.

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 composed of two efficient sentences with no wasted words. The purpose is front-loaded, and the pagination hint is provided succinctly.

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 presence of an output schema and fully documented input schema, the description adequately covers what the tool does and how to paginate. No further context is needed.

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 does not add significant semantic detail beyond what the schema provides; it only reiterates the cursor usage.

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?

Description clearly states the tool fetches a bounded transcript chunk for a specific episode using show and episode GUIDs. It distinguishes from sibling tools like get_latest_episodes, search_episodes, and give_feedback which serve different purposes.

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?

Description explicitly says to use 'next_cursor' to continue reading, providing pagination guidance. It does not mention when not to use the tool or alternatives, but the purpose is singular and clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

give_feedbackGive FeedbackAInspect

Send structured feedback about bugs, missing data, unclear behavior, or feature requests.

ParametersJSON Schema
NameRequiredDescriptionDefault
contactNoOptional follow-up contact details (e.g. email address, handle, or preferred channel) the server team can use if they address the feedback or have clarifying questions. Only provide with user consent; leave empty to remain anonymous.
feedbackYesFeedback for the server team. Include the problem, missing capability, or suggested improvement without sensitive user data.

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYesFeedback persistence status.
messageYesHuman-readable result summary.
feedback_idYesStable feedback identifier.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate it is not read-only and not destructive. The description adds the behavioral detail that contact information should only be provided with user consent, which is useful beyond annotations. However, it does not disclose any other side effects or outcomes.

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 a single sentence that is concise and front-loaded. Every word is necessary, and it avoids unnecessary detail.

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?

For a simple feedback tool with two parameters (one required) and an output schema, the description covers the main purpose and types of feedback. It is adequate, though it could mention the expected response or that feedback is stored.

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%, but the description adds value by including the consent requirement for the 'contact' parameter, which is not present in the schema description. This enhances the agent's understanding of proper usage.

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 action ('Send structured feedback') and explicitly lists the categories of feedback (bugs, missing data, unclear behavior, feature requests). This differentiates it from sibling tools which focus on retrieving episodes and transcripts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for reporting issues or suggestions, but does not provide explicit guidance on when to use this tool versus alternatives or when not to use it. No exclusions are stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_episodesSearch EpisodesA
Read-onlyIdempotent
Inspect

Search indexed podcast episodes by keyword or show name and return the show/episode GUIDs needed for transcript retrieval.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of episodes to return. Must be between 1 and 50.
queryNoOptional search keywords matched against indexed episode content. Use people, topics, companies, or phrases.
podcast_nameNoOptional podcast title or internal label to narrow results to a specific show.
published_within_hoursNoFilter episodes published in the past X hours. Maximum 168 hours (1 week).

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of episodes returned.
episodesYesMatching transcript-ready episodes.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint, idempotentHint, and destructiveHint, so the description adds limited behavioral context beyond stating it searches indexed episodes. No contradiction with annotations.

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 a single sentence that conveys the core functionality without waste. It is front-loaded and every word adds value.

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?

Given the presence of an output schema and full parameter descriptions, the description is adequate but could mention sorting or search behavior (e.g., fuzzy matching) for completeness.

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?

All 4 parameters are fully described in the input schema (100% coverage), so the description adds no new parameter information. Baseline score of 3 is appropriate.

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 searches indexed podcast episodes by keyword or show name and returns GUIDs needed for transcript retrieval. It is specific with a verb-resource combination and distinguishes itself from siblings like get_latest_episodes and get_transcript.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for finding episodes and retrieving GUIDs, but lacks explicit guidance on when to use this tool versus alternatives like get_latest_episodes. It does not state when not to use it or mention prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources