Skip to main content
Glama

Search YouTube

search_youtube
Read-only

Search current YouTube results with discovery filters and cursor pagination.

Filter by upload window, popularity, result type, duration, country, and language. Pass next_cursor back as cursor for the next page. Each page is one metered request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYes
limitNo
cursorNo
sort_byNorelevance
durationNoany
upload_dateNoany
content_typeNoall
country_codeNo
language_codeNoen

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
dataNo
countNo
resultsNo
has_moreNo
not_foundNo
next_cursorNo
suggested_followupsNo

TDQS

A3.5/5.0
Behavior3/5

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

The annotations already establish a safe, volatile read (readOnlyHint, openWorldHint, destructiveHint=false), so the description is not under pressure to justify side effects. It adds genuinely useful context about pagination semantics ('Pass next_cursor back as cursor') and cost ('Each page is one metered request'). It doesn't cover rate limits or freshness windows, but for a read-only search tool this is adequate.

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?

Three short sentences with zero fluff. The purpose is front-loaded, the filter dimensions are listed in parallel, and the pagination/cost closure is actionable. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 9-parameter search tool, the description covers the essential workflow—search, filter, paginate, budget for pages—and the presence of an output schema plus safe-read annotations lightens the compensatory burden. Gaps remain: behavior at the limit cap (50), the exact response shape of next_cursor, and whether codes are ISO-format are unaddressed. Adequate, not rich.

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?

At 0% schema description coverage, the description must compensate—and it does so only loosely. 'upload window, popularity, result type, duration, country, and language' roughly maps to upload_date, sort_by, content_type, duration, country_code, and language_code, but mappings like 'popularity'→sort_by require inference and the cursor/next_cursor naming mismatch could confuse. Cursor pagination is clearly explained, but q, limit, and ISO code formats rely on name inference.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

'Search current YouTube results with discovery filters and cursor pagination' is a specific verb+object pair with the two differentiators named. The word 'current' usefully signals a live-results guarantee. It doesn't explicitly distinguish itself from siblings like search_creators or get_youtube_video, but the function is unambiguous.

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?

It implies when to use this tool (search and filter YouTube, paginate with a cursor) but never names alternatives or exclusion conditions. The 'one metered request' note starts to frame a cost-based decision but doesn't guide the agent (e.g., 'prefer this over get_youtube_video for discovery', or 'use search_creators for creator lookup'). An agent must infer the boundary from the tool name.

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.