Skip to main content
Glama
ChristophLanganke

youtube-mcp

list_channel_uploads

Fetch a channel's recent uploads, newest first, by channel ID, handle, or URL. Returns complete uploads without keyword search, using fewer API quota units.

Instructions

List a channel's most recent uploads, newest first. Prefer this over search_videos whenever you want "the latest videos from channel X" — it costs 1 quota unit instead of 100 and returns uploads completely, including videos whose title does not contain any particular word.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channelYesChannel ID (UC...), uploads playlist ID (UU...), @handle, or channel URL
page_tokenNonextPageToken from a previous call
max_resultsNo1-50
published_afterNoISO 8601 datetime; only return videos published at or after this moment

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It adds meaningful context beyond the schema: quota cost, completeness of results, ordering, and a contrast with search_videos. It does not mention auth requirements or rate limits, but for a read-oriented list operation the disclosed behaviors are substantive.

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, front-loads the action and ordering, and devotes the second sentence to high-value usage differentiation. Every clause earns its place with no filler or redundancy.

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 relatively simple list tool with full schema coverage and no output schema, the description provides enough to call it correctly: resource, ordering, parameter semantics via schema, and a usage caveat. It could be more explicit about the exact response shape, but the behavior described is sufficient for correct invocation.

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 all four parameters are already documented in the input schema. The description reinforces that the 'channel' parameter refers to the channel whose uploads are listed, but does not add new parameter-level meaning beyond the schema. Baseline 3 is appropriate.

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 starts with a specific verb and resource: 'List a channel's most recent uploads, newest first.' It clearly distinguishes itself from the sibling search_videos by positioning this as the channel-uploads listing tool, so an agent knows exactly what it does.

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 explicitly says to prefer this tool over search_videos when fetching 'the latest videos from channel X,' and gives concrete reasons: lower quota cost (1 vs 100 units) and complete upload coverage including videos whose titles don't match a keyword. This is direct when-to-use guidance with an alternative named.

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