Skip to main content
Glama

Server Details

Free YouTube transcript fetcher: clean text, timestamped, SRT, VTT, Markdown, or JSON. No API key.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

3 tools
get_transcriptGet YouTube transcriptA
Read-onlyIdempotent
Inspect

Fetch the transcript of a single YouTube video by URL or 11-character video ID. Serves the permanent cache instantly when available and otherwise fetches from YouTube (uncached fetches are limited per IP per day). Formats: clean text, timestamped, both, srt, vtt, md, json.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoOutput format. Default "clean" (plain text). "timestamped" prefixes each line with a timestamp; srt/vtt are subtitle files; json is structured.
languageNoPreferred caption language code such as "en" or "pt-BR". Optional; defaults to English with fallback to whatever track exists.
video_urlYesYouTube video URL (watch, youtu.be, shorts, embed, live) or a bare 11-character video ID.

Output Schema

ParametersJSON Schema
NameRequiredDescription
kindYesmanual = creator captions, asr = auto-generated.
titleNoVideo title when known.
formatYesThe output format that was rendered.
channelNoChannel name when known.
languageYesLanguage of the DELIVERED track. May differ from the requested language when YouTube refuses on-the-fly translation; the text header says so when it happens.
video_idYesThe 11-character YouTube video ID.
charactersYesLength of the rendered transcript text.

TDQS

A4.5/5.0
Behavior5/5

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

Annotations mark the tool read-only and idempotent, and the description adds non-obvious behavior beyond those: instant cached results when available, uncached fetches limited per IP per day, and supported output formats. This meaningfully helps an agent predict cost and behavior.

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?

Two dense sentences with no filler. The core action, input forms, behavioral caveats, and supported formats are all included and front-loaded. Every sentence earns its place.

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?

Given the annotations, complete parameter schema, and output schema, the description covers all essential operational context: what the tool does, how inputs are accepted, caching/rate-limit behavior, and output formats. Nothing needed for correct invocation 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 coverage is 100%; every parameter is already described in the input schema, including URL/ID formats and format semantics. The description mostly restates the supported formats rather than adding new parameter-level meaning, so the baseline 3 applies.

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 and resource: 'Fetch the transcript of a single YouTube video by URL or 11-character video ID.' It is clearly distinct from siblings like get_bulk_download_link and list_videos because it narrows scope to one video's transcript.

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?

The description implies the appropriate use case: retrieving a transcript for a single video, with cache and rate-limit behavior signaling when to expect faster results. It does not explicitly mention alternatives or exclusion conditions, but the single-video scope is clear enough for an agent to route to this tool.

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

list_videosList videos in a channel or playlistA
Read-onlyIdempotent
Inspect

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.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
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.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • First observedget_bulk_download_link
    • First observedget_transcript
    • First observedlist_videos

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Extract YouTube transcripts for AI agents, RAG pipelines, and LLM workflows. Supports any YouTube URL. Returns clean text or timestamped segments. No API keys required.
    1
    4
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A powerful text extraction service that converts YouTube video content into clean, timestampless transcripts for content analysis, research, and processing workflows.
    3
    Apache 2.0
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