Skip to main content
Glama
hhy5562877

Douyin MCP

by hhy5562877

search_videos

Find Douyin videos by keyword, with filters for search type, sorting, publish time, and pagination to precisely locate relevant content.

Instructions

Search for Douyin videos by keyword.

Args: keyword: Search keyword offset: Pagination offset (default 0) count: Number of results per page (default 10, max 20) search_channel: Search type - "general", "video", "user", or "live" sort_type: Sort order - 0 (general), 1 (most liked), 2 (latest) publish_time: Time filter - 0 (unlimited), 1 (1 day), 7 (1 week), 180 (6 months)

Returns: dict containing search results with video list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
offsetNo
keywordYes
sort_typeNo
publish_timeNo
search_channelNogeneral

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It clearly states that the tool searches and returns a dict with a video list, which is core behavior, but it does not disclose authentication requirements, rate limits, pagination behavior beyond parameter defaults, or error conditions. This is adequate but not rich.

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 well-structured with a one-sentence purpose, a clean Args list, and a Returns line. Every line adds useful information and nothing is redundant or wasteful.

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?

All six parameters are semantically documented and the return type is stated, so an agent can invoke the tool correctly. Minor gaps remain around usage boundaries relative to sibling tools and any authentication or rate-limit caveats, especially given there are no annotations to provide safety context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description fully compensates by explaining every parameter: keyword, offset, count with max, search_channel with allowed values, sort_type with meaning, and publish_time with filter ranges. This adds significant meaning beyond the bare 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 and resource: 'Search for Douyin videos by keyword.' This makes the tool's purpose immediately clear and distinguishes it from sibling tools like get_homefeed, get_video_detail, or get_user_posts, which serve different retrieval needs.

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 keyword-based search purpose implies when this tool should be used, but the description provides no explicit guidance about when to prefer it over alternatives or when not to use it. For example, it doesn't mention that get_video_detail is for a single video or get_homefeed is for feed browsing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.