Skip to main content
Glama

get_video

Fetch metadata for one NudiTok video by hash. Returns page_url to link to (no direct media URL).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hashYesVideo hash (8+ hex chars)

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations supplied, the description carries the behavioral burden. It meaningfully discloses the important output behavior: it returns a page_url link, not a direct media URL, which prevents the agent from expecting media content. It does not mention errors, auth, or rate limits, but those are less critical for a simple metadata fetch.

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 short sentences with no filler. The first sentence states the purpose, and the second adds the essential output caveat about page_url versus direct media URL. Every word earns its place.

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 input side is fully covered by one documented required parameter. There is no output schema, but the description partially fills that gap by naming the key return value, page_url. It could describe the metadata fields or page_url format more explicitly, but nothing needed to invoke the tool 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?

The input schema already documents `hash` as 'Video hash (8+ hex chars)' with 100% coverage, and the description only repeats 'by hash.' The description adds no new meaning beyond what the schema already provides, so the baseline score of 3 is appropriate.

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 action ('Fetch metadata'), a concrete resource ('one NudiTok video'), and the lookup key ('by hash'). This clearly distinguishes it from sibling list/search tools such as get_feed, get_trending, and search_content.

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 phrase 'for one NudiTok video by hash' clearly establishes the condition for use: when the agent has a video hash and needs that video's metadata. It does not explicitly contrast with sibling tools, but the single-video-by-hash context is clear and effectively excludes list or search use cases.

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.7/5.0
Disambiguation4/5

Each tool targets a distinct data type or access pattern: feed, trending, user, video, creators, tags, and search. The only mild overlap is between get_feed and get_trending, but their descriptions clearly separate 'newest' from 'trending by engagement.'

Naming Consistency4/5

Tool names mostly follow a consistent verb_noun pattern with get_ for single/current items and list_ for directory-style browsing. get_feed and get_trending use get_ for collection-style endpoints, which is a slight deviation from the otherwise clear list_ convention for collections.

Tool Count5/5

Seven tools is a well-scoped size for a read-only content browsing API. Each tool covers a meaningful content surface without redundancy or bloat.

Completeness4/5

The surface covers the core browsing workflows: discovering videos via feed/trending/search, inspecting users, videos, creators, and tags. Minor gaps exist such as no per-tag detail endpoint and no comment access, but these are acceptable for a public read-only client.

Resources