Skip to main content
Glama

Get Channel Transcripts

get_channel_transcripts
Read-only

Get transcripts for a YouTube channel's most recent videos (newest first) as timestamped markdown, one section per video. Use for research across a creator's recent output; for one known video use get_transcript. Read-only; requires an API key. Charges 1 credit per video that returns a transcript, including repeat calls; videos without captions are skipped free. A 10-video call typically costs up to 10 credits, so start with a small limit. Rate limit: 5 requests per 10 seconds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesYouTube channel URL or handle (e.g. https://www.youtube.com/@lexfridman or @lexfridman)
limitNoNumber of most-recent videos to fetch, 1-50 (default 10). Upper bound on the credit charge for this call.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
failedYesVideos skipped without charge (no captions)
channelYesChannel name
succeededYesVideos that returned a transcript (each charged 1 credit)
creditsUsedYesCredits charged for this call
totalVideosYesVideos attempted in this call
transcriptsYesAll transcripts as timestamped markdown, one section per video, divider-separated
creditsRemainingYesAccount balance after this call

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already declare read-only and non-destructive, but the description adds meaningful behavioral context: requires an API key, credit charge per video including repeat calls, free skipping for videos without captions, typical cost for 10 videos, and a rate limit of 5 requests per 10 seconds. This goes beyond annotation defaults and enriches the agent's understanding of side effects and constraints.

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?

Every sentence earns its place: purpose, usage guidance, cost model, and rate limit are all packed into a few clear sentences. Information is front-loaded with the core function before operational details, with no filler or repetition.

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?

The description is fully self-contained for selecting and invoking the tool: it specifies output format, input scope, cost behavior, exclusions (videos without captions), rate limiting, and sibling alternatives. Output schema exists, so return-value detail is not required. It covers all essential operational and selection dimensions for a non-trivial tool.

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 already documents both parameters well (100% coverage), so baseline is 3. The description adds value by tying 'limit' to credit costs ('A 10-video call typically costs up to 10 credits, so start with a small limit') and providing example URL formats, giving practical semantics beyond the schema alone.

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 precise verb and object: 'Get transcripts for a YouTube channel's most recent videos (newest first) as timestamped markdown, one section per video.' It clearly distinguishes from siblings by specifying channel-level scope and explicitly contrasting with get_transcript for a single known video.

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?

Provides explicit usage context: 'Use for research across a creator's recent output' and names the alternative 'for one known video use get_transcript.' Also includes practical operational guidance on credits and rate limits, which helps the agent decide when and how to invoke it.

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

Each tool targets a distinct use case: single video, channel recent videos, playlist, and transcript polishing. No overlapping purposes.

Naming Consistency5/5

All tools follow a verb_noun pattern (get_transcript, get_channel_transcripts, get_playlist_transcripts, polish_transcript), consistent and predictable.

Tool Count5/5

Four tools cover the core needs of a transcript downloader (single, channel, playlist, polish) without being excessive or insufficient.

Completeness4/5

The set covers the main operations for accessing transcripts, though additional features like language selection or format options are absent.

Resources