Skip to main content
Glama

SocialDataX 快手 Kuaishou MCP

kuaishou_search_videos

Read-only

搜索快手作品。用户需要按搜索词查找作品时使用;keyword 只传搜索词,不要传作品链接,也不要传用户主页链接、photo_id 或 user_id;已有 photo_id、作品链接或 share_url 时直接使用对应详情或评论工具,无需先调用搜索;支持 page_token 翻页。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keywordYes搜索快手作品的搜索词,可传关键词或短语,例如品牌名、话题、人物名或产品名;不要传作品链接,也不要传用户主页链接、photo_id、user_id 或 page_token。已有作品链接或 photo_id 时改用需要快手作品 URL/photo_id 的入口;已有用户主页链接或非空 user_id 时改用需要快手用户主页 URL/user_id 的入口。
page_tokenNo搜索分页令牌。首次请求留空。继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回;page_token 是不透明分页令牌;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。只能用于同一搜索分页链路和同一关键词,不能跨能力、关键词或搜索链路复用。

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes当前页作品结果列表。
pointsYes本次成功调用的积分消耗与调用完成时的账户积分余额。
next_page_tokenYes下一页不透明分页令牌;为空表示没有更多结果。继续翻页时必须将返回的完整 next_page_token 原样作为 page_token 传回。next_page_token 只能用于同一能力和同一分页链路,不能跨能力、作品、用户、评论或搜索链路复用;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。

TDQS

A4.5/5.0
Behavior4/5

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

The annotations already establish read-only and open-world behavior. The description adds meaningful behavioral context beyond that, such as support for page_token pagination and the fact that searching is unnecessary when a direct identifier is already available. There is no annotation contradiction.

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 a single focused sentence with semicolon-separated clauses that front-load the purpose, then cover input restrictions, alternative routing, and pagination. There is no redundant or filler content.

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?

For a two-parameter read-only search tool, the description fully covers when to use it, what to pass, what not to pass, which alternatives to choose, and how to paginate. Return format is not needed because an output schema exists.

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?

Schema description coverage is 100%, so the baseline is 3. The top-level description restates the keyword constraint and mentions pagination, but it does not add meaning beyond what the schema already documents for keyword and page_token.

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 starts with the specific action and resource: '搜索快手作品' (search Kuaishou videos), and states the trigger condition '用户需要按搜索词查找作品时使用'. It clearly differentiates from sibling tools like kuaishou_search_users and the detail/comment tools by restricting input to a search term rather than IDs or URLs.

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?

It gives explicit when-to-use guidance: only when searching by keyword. It also states exclusions: do not pass links, photo_id, or user_id, and says that if these identifiers already exist, the agent should directly use the corresponding detail or comment tools instead of searching first.

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/5.0
Disambiguation5/5

Every tool has a clear, distinct purpose. Pairs that differ by input method (profile URL vs user_id, photo_id vs URL) are clearly separated by input type, and no two tools appear to do the same thing. Search, user info, video details, comments, speech-to-text, and points balance are all unambiguous.

Naming Consistency4/5

The vast majority of tools follow a consistent `kuaishou_<verb>_<resource>[_by_<identifier>]` pattern (e.g., `kuaishou_get_user_info_by_user_id`). The only outlier is `socialdatax_get_points_balance`, which breaks the prefix convention but is still readable. Minor inconsistency lowers the score slightly.

Tool Count5/5

16 tools is well-scoped for a social media data access server. Each tool covers a distinct functional need—user info, videos, comments, speech-to-text, search, and account balance—without being excessive or sparse for the domain.

Completeness4/5

The tool surface covers the typical read-side workflows for Kuaishou: hot list, user profiles, user videos, video details, comments and replies, speech-to-text, and search. Minor gaps exist (e.g., no followers/following lists, no pagination on hot search), but these are not critical for the core purpose of retrieving public data.

Resources