Skip to main content
Glama

framefetch_search

Read-only

Search YouTube by keyword (yt-dlp, no login). Returns up to limit hits: url/title/uploader/durationSec/uploadDate(often null)/thumbnail/views. YouTube only — use framefetch_extract on a hit's url for transcript/frames/etc. Billed ~$0.002/call (metadata-tier), regardless of limit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cacheNofalse = fresh, billed search.
limitNoDefault 10.
queryYes2-200 chars.
platformNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.6/5.0
Behavior4/5

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

Annotations only signal readOnlyHint and openWorldHint. The description goes further by disclosing 'yt-dlp, no login', billing cost '~$0.002/call', result field list, and the caveat that uploadDate is often null. It does not contradict annotations and adds meaningful behavioral context.

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 compact sentences, front-loaded with the primary purpose, then implementation details, billing, and a pointer to the next step. No fluff; every sentence adds value.

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?

The description covers what the tool does, what it returns, cost, login requirements, and the alternative tool. It lacks an explicit note about error cases or empty results, but it is complete enough for a simple search tool with no output schema.

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 coverage is 75%, and the description adds meaning by clarifying that `limit` controls the number of returned hits, listing the fields returned, and restricting platform to YouTube. It does not repeat schema text and gives context for `limit` and platform beyond the schema.

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 uses a specific verb-resource pair: 'Search YouTube by keyword'. It clearly identifies what the tool does and differentiates from the sibling 'framefetch_extract' by stating 'use framefetch_extract on a hit's url for transcript/frames/etc.' It also pins scope with 'YouTube only'.

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 when-to-use context: 'Search YouTube by keyword' and an explicit alternative: 'use framefetch_extract on a hit's url...'. It also gives an exclusion: 'YouTube only'. This is strong guidance for tool selection among siblings.

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 maps to a clearly distinct function: balance checking, single-URL extraction, platform capability lookup, and YouTube search. The descriptions explicitly separate them, especially framing framefetch_account as read-only and framefetch_extract as the only paid operation. There is no real risk of selecting the wrong tool for a task.

Naming Consistency4/5

All tools share the framefetch_ prefix and use consistent lowercase snake_case, giving the set a coherent namespace. However, the suffixes mix nouns like account and platform_capabilities with verbs like extract and search, so the naming is not as uniform as a strict verb_noun convention.

Tool Count5/5

Four tools is well-scoped for a social-video extraction API: account, capabilities, search, and extraction each earn their place without overlap. The set is neither too thin nor bloated for its apparent purpose.

Completeness5/5

The tool surface covers the core workflow: check platform support, search for a video, extract desired data, and monitor account balance. There are no obvious dead ends or missing operations for the stated video-extraction domain.