Skip to main content
Glama
hhy5562877

Douyin MCP

by hhy5562877

get_homefeed

Retrieve recommended videos from Douyin's home feed. Filter by content category, set the number of results, and use refresh_index for pagination.

Instructions

Get recommended videos from Douyin home feed.

Args: tag: Content category - one of: "all", "knowledge", "sports", "auto", "anime", "game", "movie", "life_vlog", "travel", "mini_drama", "food", "agriculture", "music", "animal", "parenting", "fashion" count: Number of videos to return (default 20) refresh_index: Refresh index for pagination (default 0)

Returns: dict containing recommended video list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNoall
countNo
refresh_indexNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does add that refresh_index is for pagination and states the return type, but it omits critical context such as whether authentication is required, how recommendations are generated, or any rate-limit constraints. For a feed tool, login dependencies are especially relevant.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The Args/Returns structure is clear and front-loaded, with no filler sentences. The long tag list is necessary but could arguably be placed as an enum in the schema; repeating default values that already exist in the schema is minor redundancy.

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 tool with 3 optional parameters and an output schema, the invocation details are mostly covered. However, the definition lacks usage context, such as when to prefer this over search_videos, and does not mention whether login is required, which is a meaningful gap given the sibling check_login_status tool.

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%, and the description fully compensates. It enumerates all 16 allowed tag values, clarifies count as the number of videos, and explains refresh_index as the pagination cursor. Without this, the parameters would be opaque.

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?

The opening sentence 'Get recommended videos from Douyin home feed' clearly identifies the action and resource with a specific verb. It is distinct enough from siblings like get_video_detail or get_user_posts, though it does not explicitly name alternatives or exclusion conditions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool instead of search_videos, get_user_posts, or check_login_status. It does not mention prerequisites, alternatives, or typical scenarios, leaving the agent to infer usage from the tool name alone.

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