Skip to main content
Glama

Get YouTube video

get_youtube_video
Read-only

Fetch fresh metadata and engagement for a YouTube video ID.

Returns exact publication data when available, plus views, likes, comments, duration, tags, categories, and channel identity. This is a metered live-data request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
video_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
dataNo
countNo
resultsNo
has_moreNo
not_foundNo
next_cursorNo
suggested_followupsNo

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the readOnlyHint/openWorldHint annotations, the description adds the genuinely useful qualifier 'This is a metered live-data request,' warning agents of cost and freshness implications—valuable behavioral context an agent cannot infer from the annotations. The phrase 'exact publication data when available' hints at nullable/conditional returns for incomplete videos. It stops short of discussing rate limits, authentication, or error cases for invalid/deleted IDs, but given that annotations already signal a safe, read-only, open-world surface, the incremental disclosure is meaningful, pushing it above the minimum.

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 front-loads a strong, verb-first sentence that captures the tool's essence, then lists the specific return fields, and closes with the operational warning. Every sentence earns its place—no filler, no repetition of the tool name or obvious parameters, and the paragraph break separates the definition from the warning. It's tight without being sparse.

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?

With only one well-constrained parameter, comprehensive annotations, and a present output schema, the description doesn't need to detail the return structure and reasonably keeps that to a short list. The metered/live warning covers the key operational caveat for a data-retrieval tool. The only minor gaps (region restrictions, handling of deleted videos, rate limits) are edge cases that would be nice-to-have but aren't essential for correct invocation.

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 description coverage is 0%, so the description carries the full explanatory burden, but with a single `video_id` parameter constrained by the YouTube ID regex pattern, the risk of misuse is low. The description's mention of 'a YouTube video ID' confirms the parameter's purpose in natural language. Since the parameter name plus the regex pattern already leave minimal ambiguity, the description's light touch suffices to reach a 4.

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 specific verb and resource: 'Fetch fresh metadata and engagement for a YouTube video ID.' It then enumerates concrete return dimensions (views, likes, comments, duration, tags, categories, channel identity) that clearly scope the tool to single-video metadata. This distinguishes it from siblings like get_youtube_video_transcript, get_youtube_channel, and search_youtube without being confused with them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use—retrieving metadata for one YouTube video by ID—is implied by the verb 'Fetch' and the parameter name, and the metered-live-data note hints agents should call sparingly. However, there's no explicit routing to alternatives such as 'for transcripts, use get_youtube_video_transcript' or 'for channel data, see get_youtube_channel,' which the sibling list suggests would be valuable. No prerequisites, ordering constraints, or degradation conditions are stated; an explicit 'use this when' statement is absent.

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

A3.9/5.0
Disambiguation2/5

Multiple tools have unclear boundaries: `autocomplete_creators` and `search_creators` both claim the exact same example query ('Who is that fitness coach called Jane?') as their primary use case, creating direct routing conflicts. `get_creator` and `get_profile` also overlap heavily for exact platform+username lookups, with descriptions admitting the choice depends on whether 'profile metrics are the main need' — a thin distinction. `search_creators` further muddies things by dual-routing to legacy semantic search, making it a hybrid that competes with both `autocomplete_creators` and `semantic_search_creators`.

Naming Consistency4/5

The naming follows a mostly consistent verb_noun snake_case pattern: `get_*` covers record fetching, with clear singular/batch pairs like `get_instagram_post`/`get_instagram_posts` and transcript variants. Minor deviations exist (`semantic_search_creators` prefixes a modifier, and `autocomplete_`, `find_`, `match_`, `lookup_`, `render_` each introduce different verbs), but the style is uniform and the verb typically reflects the operation type.

Tool Count3/5

At 28 tools the server is heavy, but the scope is genuinely broad — three platform-specific data surfaces (Instagram, TikTok, YouTube), each requiring profile/video/transcript/listing operations, plus creator search, matching, and rendering. The count is inflated by redundancy, though: four `render_*` tools that could collapse into one parameterized tool, and batch variants of the Instagram raw-data endpoints. It is borderline acceptable for the platform-multiplied domain rather than chaotic bloat.

Completeness4/5

The tool surface covers the full read-only creator workflow: fuzzy lookup (autocomplete/search), exact profile fetch (get_profile/lookup_profiles), discovery (semantic_search/find_lookalike), fit scoring (match_creators), content evidence (get_posts), and presentation (render_*). Notable gaps include no Instagram-specific profile endpoint (odd given TikTok/YouTube have dedicated ones), no YouTube comments, and no audience-demographic data, but agents can complete realistic workflows without dead ends.