Skip to main content
Glama
kyle-marks

ask-pb

by kyle-marks

list_episodes

Read-only

Browse Pinkbike Podcast episodes with metadata, transcription availability, and error flags. Paginate up to 500 results per page.

Instructions

Browse episode metadata, transcription availability, and errors. Maximum 500 per page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds the useful behavioral constraint of a 500-item page limit and clarifies what data is exposed (metadata, transcription availability, errors).

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?

A single, front-loaded sentence states purpose first and then the key constraint. There is no wasted text.

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 list tool with an output schema and only two optional pagination parameters, the description covers the essential behavior. The annotations cover safety, and the output schema handles return structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds meaning for 'limit' by capping it at 500, but it does not explain 'offset' semantics (e.g., zero-based skip), leaving a gap for agents unfamiliar with pagination conventions.

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 clear verb ('Browse') with a specific resource: episode metadata, transcription availability, and errors. This distinguishes it from siblings like get_episode_passages or get_evidence, which target different resources.

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 the tool is for browsing episode-level data and includes a practical pagination cap ('Maximum 500 per page'), but it does not explicitly state when to prefer this tool over siblings or mention any exclusions.

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