Skip to main content
Glama

BulkTranscripts YouTube

List a playlist's videos

get_playlist_videos

List every video in a YouTube playlist, in playlist order (courses and series keep their sequence). Accepts a playlist URL or bare playlist id. Costs 1 credit. Chain into get_transcripts to bulk-extract.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax videos to list, default 100.
playlistYesPlaylist URL or id (the list= value).

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses cost (1 credit), ordering behavior, and accepted playlist formats. However, it claims to list 'every video' while the schema's limit parameter has a default of 100 and a max of 1000, with no clarification about pagination or whether the limit must be raised to see all videos. Return-value shape is also not described.

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 four short sentences, each earning its place: purpose and ordering, input format, cost, and a high-value usage tip. It is front-loaded with the core action and contains no filler or redundant restatements of the title.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 2-parameter read tool, it covers purpose, input, cost, and use-case. But the unresolved tension between 'every video' and the limit parameter, plus no information about the response format or pagination, leaves meaningful gaps. Given there is no output schema or annotations to fill those gaps, the description alone is not fully complete.

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 schema already documents both parameters well. The description's 'playlist URL or bare playlist id' essentially mirrors the schema's 'Playlist URL or id (the list= value)' without adding significant new meaning. The chain-to-transcripts tip is workflow guidance, not 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 opens with a specific verb and resource: 'List every video in a YouTube playlist,' and adds a distinctive trait (playlist order) that separates it from the sibling channel/search/latest tools. The title reinforces this clearly, and the input-form detail (URL or bare id) leaves no ambiguity about scope.

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?

It gives clear contextual guidance: playlist order is preserved for courses/series, and it recommends chaining into get_transcripts for bulk extraction. It doesn't explicitly state when not to use it versus siblings like get_channel_videos, but the context is strong enough for an agent to select it appropriately.

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.3/5.0
Disambiguation5/5

Each tool targets a distinct stage: channel discovery, playlist discovery, search, and transcript retrieval. The singular vs batch transcript tools are clearly separated by single-call vs bulk-call behavior, and the two search tools are scoped by global versus channel-limited search.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern: get_* for retrieval/search operations and search_channel/search_youtube for search operations. The naming directly reflects the resource and makes the tool surface highly predictable.

Tool Count5/5

Seven tools is a well-scoped set for the server's stated purpose: discover YouTube videos, extract transcripts, and bulk-process them. Each tool serves a clear workflow need, and none feel redundant or ornamental.

Completeness5/5

The workflow is complete from video discovery (channel, playlist, latest, search) through to transcript retrieval (single and batch). Gaps such as channel-level playlist listing or TikTok channel discovery are peripheral; the core YouTube transcript workflow has no dead ends.

Resources