Skip to main content
Glama

Energy Podcast Digest

List an edition's episodes

list_digest_episodes
Read-onlyIdempotent

The episodes a given edition references (title + show + published date + episode ids) — the cheapest way to map a week. Omitting slug returns the latest edition's episodes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugNoYYYY-MM-DD edition date (from list_digests); omit for the latest

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
digestYes
episodesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "digest": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "as_of": {
      +          "type": "string"
      +        },
      +        "episode_count": {
      +          "type": "integer"
      +        },
      +        "slug": {
      +          "description": "YYYY-MM-DD edition date",
      +          "type": "string"
      +        },
      +        "url": {
      +          "type": "string"
      +        },
      +        "week_label": {
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "slug",
      +        "week_label",
      +        "as_of",
      +        "episode_count",
      +        "url"
      +      ],
      +      "type": "object"
      +    },
      +    "episodes": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "api_url": {
      +            "type": "string"
      +          },
      +          "duration_sec": {
      +            "type": [
      +              "integer",
      +              "null"
      +            ]
      +          },
      +          "eid": {
      +            "type": "string"
      +          },
      +          "published": {
      +            "type": "string"
      +          },
      +          "show": {
      +            "type": "string"
      +          },
      +          "title": {
      +            "type": "string"
      +          },
      +          "url": {
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "eid",
      +          "title",
      +          "show",
      +          "published",
      +          "url",
      +          "api_url"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "digest",
      +    "episodes"
      +  ],
      +  "type": "object"
      +}
  2. Changed2 schema fields changed
    • changedInput schema / properties / slug / description
      Previous value: -"YYYY-MM-DD edition date"New value: +"YYYY-MM-DD edition date (from list_digests); omit for the latest"
    • changedInput schema / required
      Previous value: -[
      -  "slug"
      -]New value: +[]
  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 readOnlyHint=true and idempotentHint=true, covering safety and repeatability. The description adds value by disclosing the return content (title, show, published date, episode ids) and the default behavior when slug is omitted. It does not contradict annotations, and the added details are useful beyond the structured fields.

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 with no filler. The core purpose and the key usage nuance (omitting slug) are front-loaded. Every sentence adds value, making it efficient and easy to parse.

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?

The tool is simple (one optional parameter) and has an output schema to describe return format. The description covers the main behavior, the default case, and the source of the slug parameter. No critical information is missing for an agent to invoke it correctly.

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 covers 100% of the single parameter 'slug' with a description, so the schema already explains its format and optionality. The description repeats the omission behavior but does not add new semantic details beyond the schema. Baseline of 3 is appropriate since schema does the heavy lifting.

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 lists episodes referenced by an edition, specifying the fields (title, show, published date, episode ids). It differentiates from siblings like list_digests (which lists editions) and get_digest (which likely retrieves a single edition) by focusing on episodes. The phrase 'the cheapest way to map a week' adds a clear use-case identity.

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 implies usage context: it is the cheapest way to map a week, and it tells the agent that omitting slug returns the latest edition, which is a practical decision point. It also references list_digests as the source for the slug. However, it does not explicitly compare to alternatives like get_episode or search, so the guidance is implicit rather than fully explicit.

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.

Resources