Skip to main content
Glama

Energy Podcast Digest

Read one episode

get_episode
Read-onlyIdempotent

One episode's title, show, summary, and full transcript. Scoped to episodes referenced by a published digest. Pass digest when an episode spans more than one week.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
eidYesEpisode id (from list_digest_episodes)
digestNoOptional YYYY-MM-DD edition date to disambiguate an episode that spans weeks

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
eidYes
urlYes
showYes
titleYes
summaryYes
chaptersNoChapter list (often empty): [{"start": seconds, "title": str}]
speakersYes
publishedYes
transcriptYes
descriptionYesRSS episode description
digest_slugYes
duration_secYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • removedOutput schema / additionalProperties
      Removed value: -false
    • addedOutput schema / properties / chapters
      Added value: +{
      +  "description": "Chapter list (often empty): [{\"start\": seconds, \"title\": str}]",
      +  "items": {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "description": {
      +      "description": "RSS episode description",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "digest_slug": {
      +      "type": "string"
      +    },
      +    "duration_sec": {
      +      "type": [
      +        "integer",
      +        "null"
      +      ]
      +    },
      +    "eid": {
      +      "type": "string"
      +    },
      +    "published": {
      +      "type": "string"
      +    },
      +    "show": {
      +      "type": "string"
      +    },
      +    "speakers": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "summary": {
      +      "type": "string"
      +    },
      +    "title": {
      +      "type": "string"
      +    },
      +    "transcript": {
      +      "type": "string"
      +    },
      +    "url": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "eid",
      +    "title",
      +    "show",
      +    "published",
      +    "duration_sec",
      +    "description",
      +    "summary",
      +    "transcript",
      +    "speakers",
      +    "digest_slug",
      +    "url"
      +  ],
      +  "type": "object"
      +}
  3. Changed1 schema field changed
    • changedInput schema / properties / eid / description
      Previous value: -"Episode id"New value: +"Episode id (from list_digest_episodes)"
  4. 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, so the safety profile is covered. The description adds useful behavioral context: what fields are returned, the dependency on published digests, and the disambiguation behavior for multi-week episodes.

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 tight sentences with the core output fields first, followed by the scope constraint and optional-parameter guidance. No filler or redundant detail; every sentence earns its place.

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-one-resource tool with an output schema, the description covers the necessary scope, return contents, and disambiguation rule. The source of eid is already documented in the schema, so nothing essential 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?

Schema description coverage is 100% and both parameters already have clear descriptions. The tool description reinforces the digest parameter's purpose ("when an episode spans more than one week"), but this largely repeats what the schema says. It adds some context about scope but does not substantially go 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?

Title and description together state a specific verb and resource: reading one episode and retrieving its title, show, summary, and full transcript. The scope qualifier "Scoped to episodes referenced by a published digest" distinguishes it clearly from sibling tools like search or list_digest_episodes.

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 gives clear context: the tool is for a single episode that belongs to a published digest, and it explicitly tells when to pass the optional digest parameter (when an episode spans more than one week). It does not name alternatives or exclusions, but the scope is specific enough to guide selection.

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