youtube-media-mcp-server
Server Details
YouTube video search with transcript extraction as first-class output.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsimdb_searchARead-onlyInspect
Search IMDB for movies and TV shows. Returns titles, ratings, cast. Args: query: Movie or show title (e.g. 'Inception') max_results: Max results (default 10)
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| max_results | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
ReadOnlyHint and openWorldHint are already set, so the safety profile is known. The description adds return fields and the default for max_results, but does not disclose potential behavior such as no-result handling, rate limits, or external API dependency. This is acceptable but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence plus a two-parameter argument list; every element earns its place. The purpose is front-loaded and the structure is easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With only two simple params, no output schema, and annotations present, the description provides essential information: search scope, return fields, and parameter semantics. It could mention error/edge behavior but is otherwise complete for a basic search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has no property descriptions (0% coverage), but the description fully compensates: query is defined as 'Movie or show title' with the example 'Inception', and max_results is defined as 'Max results (default 10)'. This adds real meaning beyond the raw schema types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description begins with 'Search IMDB for movies and TV shows' – a specific verb and resource that clearly distinguishes it from sibling tools like search_podcasts and youtube_transcript. It also names return content (titles, ratings, cast), reinforcing the purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'for movies and TV shows' defines the applicable scope and implicitly distinguishes this from podcasts and transcript tools. It lacks explicit when-not-to-use guidance or alternative tool references, but the domain separation is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_podcastsARead-onlyInspect
Search for podcast episodes by topic. Args: query: Search query (e.g. 'AI startups') max_results: Max episodes (default 20)
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| max_results | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds minimal context (topic-based search) and defaults (max_results=20) beyond annotations, but does not disclose rate limits, pagination, or return format. It neither contradicts annotations nor provides rich behavioral detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, starting with a one-sentence purpose statement followed by a structured Args list. Every word earns its place; no fluff or redundant information. It efficiently conveys purpose and parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter search tool with no output schema, the description provides the core purpose and parameter semantics. It does not describe return values or pagination, but the tool's purpose ('Search for podcast episodes') implies a list of results. Given the low complexity and annotation coverage, this is mostly complete, though a note on return structure would improve it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (bare properties), but the description explicitly documents both parameters via an Args section: 'query' with an example ('AI startups') and 'max_results' with its default. This fully compensates for the schema's lack of descriptions, providing clear meaning and usage for each parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Search' and a clear resource 'podcast episodes', with the qualifier 'by topic'. This distinguishes it from sibling tools like imdb_search (movies) and youtube_transcript (transcripts), making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states it searches podcast episodes, providing clear context for when to use it. However, it does not explicitly mention alternatives or when-not-to-use scenarios. The context is clear, but exclusions or sibling differentiation are missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
youtube_transcriptARead-onlyInspect
Extract transcript/subtitles from a YouTube video. Args: video_url: YouTube video URL (e.g. 'https://youtube.com/watch?v=...') language: Language code (default 'en')
| Name | Required | Description | Default |
|---|---|---|---|
| language | No | en | |
| video_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safe read-only nature is covered. The description adds no extra behavioral context (e.g., rate limits, video availability constraints, or return format). It aligns with the annotation but provides no additional transparency beyond what the annotation already conveys.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: one clear purpose sentence followed by two brief parameter explanations. It is front-loaded with the key action and resource, and every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should explain the return value. However, it only says 'Extract transcript/subtitles' without specifying the output format (e.g., plain text, timestamped JSON, or whether it returns the full transcript or a portion). This leaves a significant gap for an agent invoking the tool, despite the simplicity of the inputs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description fully compensates by explaining both parameters: video_url includes a concrete example URL, and language specifies a default value 'en'. This adds meaning beyond the bare schema definition and would be essential for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Extract' with a clear target resource ('transcript/subtitles from a YouTube video'). This distinguishes it from sibling tools like imdb_search and search_podcasts, which are search-oriented and unrelated to video transcripts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies usage for retrieving YouTube transcripts, but it does not explicitly state when to use this tool vs. alternatives or mention exclusions. Sibling tools are not similar, so there is no explicit comparison, but the intended use case is inferable from the purpose statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Extract YouTube transcripts, search what was said, and read on-screen frames with cited timestamps.
Search YouTube and read video, channel and transcript data as JSON. No Google Cloud project.
YouTube transcripts, search, channel/playlist listings and upload tracking for AI agents. No signup.
Transcribe YouTube via Whisper. Summaries, chapters, semantic-search across your corpus.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables interaction with YouTube through search and transcript extraction functionality. Allows searching for videos and retrieving full transcripts with timestamps for content analysis.27
- AlicenseNot gradedqualityDmaintenanceProvides tools for searching YouTube videos, retrieving transcripts, and performing semantic search over video content.MIT
- AlicenseBqualityCmaintenanceEnables extraction of transcripts, keyword-based video search with metadata retrieval, and channel information discovery from YouTube videos through natural language interaction.34MIT
- FlicenseNot gradedqualityBmaintenanceEnables searching and retrieving video transcripts, metadata, channel info, playlists, comments, trending videos, and engagement analytics from YouTube through natural language.57
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a completely different media type: IMDB for movies/TV, podcasts for audio episodes, and YouTube for transcripts. There is no functional overlap between them.
The naming convention is mixed: 'imdb_search' uses object-verb, 'search_podcasts' uses verb-object, and 'youtube_transcript' uses noun-noun without a verb. This creates minor inconsistency, though all names are still readable.
With only 3 tools, the server sits at the borderline of being too thin. Each tool is distinct, but the small number feels sparse for a media-oriented server.
The server name suggests a YouTube media focus, yet it lacks basic YouTube operations like video search or channel details. The inclusion of IMDB and podcasts is unrelated, leaving significant gaps in the advertised scope.