Skip to main content
Glama

Episodes

episodes
Read-onlyIdempotent

List recent episodes for a podcast by its Podcast Index feed ID. Returns episode title, description, publish date, duration, audio URL, and episode/season numbers. Example: episodes({ feed_id: 920666, max: 10 })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
maxNoMaximum number of episodes to return (default 10, max 100)
_apiKeyNoOptional — your own Podcast Index credentials as KEY:SECRET for higher limits; omit to use the shared Pipeworx key.
feed_idYesPodcast Index feed ID (from search_podcasts or trending podcasts results)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "_apiKey": "your-podcastindex-api-key",
      -    "feed_id": 920666,
      -    "max": 10
      -  },
      -  {
      -    "_apiKey": "your-podcastindex-api-key",
      -    "feed_id": 920666
      -  }
      -]New value: +[
      +  {
      +    "feed_id": 920666,
      +    "max": 10
      +  },
      +  {
      +    "feed_id": 920666
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-podcastindex-api-key",
      +    "feed_id": 920666,
      +    "max": 10
      +  },
      +  {
      +    "_apiKey": "your-podcastindex-api-key",
      +    "feed_id": 920666
      +  }
      +]
  3. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds useful behavioral context beyond annotations by stating results are 'recent' and by listing the exact fields returned, which is especially valuable given there is no output 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?

Two concise sentences plus a compact example. The action is front-loaded, every sentence adds information, and there is no filler or repetition of the annotations.

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 simple read-only tool, this description is complete: it explains what it returns, how the feed ID is used, and gives a concrete example. The schema covers parameter details and defaults, and the annotations cover safety, so nothing essential is missing.

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 description coverage is 100%, so the baseline is 3. The description's example demonstrates the required feed_id and optional max, but this largely duplicates the schema examples and doesn't add meaningful new parameter semantics.

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 uses a specific verb ('List'), names the resource ('recent episodes'), and identifies the key selector ('Podcast Index feed ID'). It also enumerates the returned fields, making the tool's scope unmistakable and distinguishing it from siblings like get_podcast or search_podcasts.

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 clearly implies this tool is used after obtaining a Podcast Index feed ID, and the example reinforces the expected call shape. It doesn't explicitly state when to prefer this over get_podcast, but the context is clear enough for an agent to infer the intended workflow.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.