Skip to main content
Glama

YouTube Transcript & Search MCP Server

List channel videos

list_channel_videos
Read-only

List videos from a channel's Videos tab, newest first. Accepts an @handle, a UC... channel id or a channel URL. ids_only=true returns just video ids (up to 500 per page) — use it when you only need ids to fetch transcripts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo@handle, channel name, UC... channel id or channel URL (required unless paginating)
limitNoPage size. Up to 100, or up to 500 with ids_only
ids_onlyNoReturn video_ids[] instead of full video objects
next_page_tokenNoToken from a previous result

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
videosNo
channelNo
has_moreNo
video_idsNo
next_page_tokenNo

TDQS

A4.1/5.0
Behavior4/5

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

With readOnlyHint and openWorldHint already covering the safety profile, the description adds meaningful behavior: newest-first ordering, accepted input formats, and up-to-500-per-page behavior for ids_only. It would only need more detail if return values or errors were unexplained, and an output schema exists.

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 compact and front-loaded: purpose first, then accepted identifiers, then the ids_only optimization and when to use it. Every sentence earns its place, and there is no unnecessary repetition of schema details.

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

Completeness4/5

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

For a read-only list tool with a complete input schema and an output schema, the description covers ordering, identifier types, pagination behavior, and the key ids_only use case. The only notable gap is explicit routing between the closely named sibling tools, which is picked up in purpose and usage.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining when ids_only should be used, the practical reason for it (fetching transcripts), and the fact that limit behaves differently in ids_only mode. It complements the schema instead of repeating it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the exact action and resource — list videos from a channel's Videos tab, newest first — and specifies accepted identifier forms (@handle, UC id, URL). It is distinct from playlist and search siblings, but it does not explicitly address how it differs from the closest sibling, latest_channel_videos.

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, actionable guidance for ids_only mode: use it when you only need IDs to fetch transcripts. It does not say when to choose this tool instead of latest_channel_videos or search_channel_videos, so exclusion guidance between siblings is mostly implicit.

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.1/5.0
Disambiguation4/5

Most tools target a distinct resource and action: search, list, metadata, transcript, job lifecycle, and credits. The get_transcripts_job / get_transcripts_result / get_transcripts_results trio is easy to blur at first glance, but the descriptions clearly differentiate job status, one result, and paged results.

Naming Consistency4/5

The set mostly follows a predictable verb_noun pattern: get_, list_, search_, submit_, cancel_. The main deviation is latest_channel_videos, which uses an adjective instead of a verb, and the result/results pair is mildly confusing, but overall naming is coherent and easy to navigate.

Tool Count5/5

14 tools is well within the sweet spot for a server with this scope. Each tool serves a clear niche: video lookup, metadata, single transcripts, batch jobs, and search are all represented without unnecessary or redundant tools.

Completeness5/5

The server provides full coverage of the transcript and search workflow: search YouTube, list channel/playlist videos, fetch or batch-fetch transcripts, check job progress/credits, and read results. There are no obvious missing operations that would force an agent into a dead end.