Skip to main content
Glama

Get TikTok video

get_tiktok_video
Read-only

Fetch normalized details and current engagement metrics for a TikTok video URL.

Canonical video URLs and TikTok share URLs are accepted. Returned media URLs are temporary; the managed dataset captures eligible video media asynchronously. Content always resolves against the US region. This is a metered live-data request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
regionNoUS

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
dataNo
countNo
resultsNo
has_moreNo
not_foundNo
next_cursorNo
suggested_followupsNo

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint, openWorldHint, destructiveHint), the description discloses important behaviors: returned media URLs are temporary, media capture is asynchronous, content resolves against the US region, and the request is metered. These details meaningfully inform an agent's expectations and would not be inferred from the schema or annotations alone.

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 is compact yet information-dense. The main action is front-loaded in the first sentence, and each subsequent sentence adds a specific caveat or behavioral detail. No filler or redundant phrases are present.

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

Completeness5/5

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

Given the tool's simplicity (one required parameter, fixed region, output schema provided), the description covers all essential call-time context: URL format variants, region behavior, temporary media URLs, asynchronous capture, and metering. An agent has enough information to correctly select and invoke the tool without encountering surprises.

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 must compensate for parameter meaning. It does so by explaining what URL forms are accepted ('Canonical video URLs and TikTok share URLs') and clarifying that the region is always US ('Content always resolves against the US region'). This adds practical semantics beyond the bare 'uri' format and 'const: US' in 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 opens with a specific verb ('Fetch'), a clear resource ('TikTok video URL'), and the exact kind of data returned ('normalized details and current engagement metrics'). This clearly distinguishes it from sibling tools like get_tiktok_profile, get_tiktok_video_transcript, and list_tiktok_video_comments, which concern different resource aspects.

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 description provides clear context for when to use the tool: it accepts canonical and share URLs and is a metered live-data request, implying it should be used when current engagement metrics and normalized details are needed. It does not explicitly name alternatives or exclusions, but the accepted URL types and live-data warning offer actionable usage guidance.

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.