Skip to main content
Glama

List videos in a channel or playlist

list_videos
Read-onlyIdempotent

List the videos of a YouTube channel or playlist: date, video ID, and title for each. Use this to answer questions about a channel — pick the relevant videos by title, then call get_transcript for each one. Listings are cached for a few hours; a fresh enumeration counts against the same daily allowance as uncached fetches.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesYouTube channel or playlist URL (also accepts @handles).
limitNoMaximum videos to list, newest first for channels. Default 100, maximum 200.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYes
shownYesHow many are included below (bounded by limit).
titleNoChannel or playlist title when known.
videosYes
truncatedNoTrue when the source has more videos than one enumeration returns (500).
video_countYesTotal videos in the listing snapshot.

TDQS

A4.7/5.0
Behavior5/5

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

The description adds meaningful behavioral context beyond the annotations: 'Listings are cached for a few hours; a fresh enumeration counts against the same daily allowance as uncached fetches.' This introduces caching and quota-cost trade-offs that the agent would not otherwise know from readOnlyHint, openWorldHint, or idempotentHint alone. It does not contradict any annotation.

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 two sentences: the first states the core function and output, the second gives usage guidance and behavioral caveats. There is no filler, every sentence earns its place, and the most important information is front-loaded.

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 two-parameter read-only tool with an output schema and annotations covering safety and open-world semantics, the description covers the essential context: what it lists, how to use it with a sibling, and the caching/rate-limit caveat. Nothing needed to call it correctly 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 does not add meaning to the url or limit parameters beyond what the schema already provides; it focuses instead on output content and workflow. This is acceptable because the schema already documents both parameters fully, but the description contributes no additional parameter-level insight.

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 states a specific verb ('List'), a precise resource ('the videos of a YouTube channel or playlist'), and the exact fields returned ('date, video ID, and title'). It also distinguishes itself from the get_transcript sibling by explicitly routing to it as a next step, so an agent can tell immediately what this tool does and what it does not do.

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

Usage Guidelines5/5

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

The description gives explicit usage context: 'Use this to answer questions about a channel — pick the relevant videos by title, then call get_transcript for each one.' This clearly tells an agent when to use the tool and how it fits into a larger workflow, directly naming the sibling tool that should follow. It implicitly excludes get_transcript as a substitute for listing.

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.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool targets a clearly distinct operation: fetching one transcript, listing videos in a channel/playlist, and generating a bulk download link. There is no meaningful overlap or risk of an agent selecting the wrong tool.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern: get_transcript, list_videos, and get_bulk_download_link all use a clear action prefix followed by the object. The naming is predictable and easy to reason about.

Tool Count5/5

Three tools is well-scoped for this server's purpose: list to discover videos, get to fetch a single transcript, and bulk link to handle larger downloads. Each tool earns its place without unnecessary bloat.

Completeness5/5

The surface covers the full intended workflow: discovering videos, retrieving individual transcripts in multiple formats, and obtaining a bulk download path. No critical dead ends are apparent for the stated domain.

Resources