Skip to main content
Glama

SocialDataX 快手 Kuaishou MCP

kuaishou_get_user_posted_videos_by_profile_url

Read-only

根据可直接解析出非空 user_id 的快手用户主页链接、短链接或分享文案获取公开作品列表;不要传作品链接;只有 live/fw-user 主页链接时,先调用用户资料入口,成功后使用返回的非空 user_id 查询作品列表。如果上一步结果已返回非空 user_id,可直接使用 user_id 入口。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_tokenNo用户作品分页令牌。首次请求留空。继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回;page_token 是不透明分页令牌;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。只能用于同一用户作品分页链路,不能跨能力或用户复用。
profile_urlYes快手用户主页链接、短链接或分享文案;不要传作品链接。该入口需要能直接解析出可复用 user_id 的主页链接;只有 live/fw-user 主页链接时,先调用用户资料入口,成功后使用返回的非空 user_id 查询作品列表。如果上一步结果已返回非空 user_id,可直接使用 user_id 入口。

Output Schema

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

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful behavioral constraints beyond annotations: it only accepts profile links that directly resolve to a non-empty user_id, rejects work links, and defines the two-step behavior for live/fw-user pages. It does not detail error behavior, but this is not required given the schema and read-only annotation.

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 description is front-loaded with the main purpose and then packs routing and negative constraints into compact, semicolon-joined sentences. It is efficient overall, though it repeats some schema content, creating minor redundancy rather than waste.

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 complexity, the description fully covers the selection criteria, the special live/fw-user routing, the forbidden input type, and the fallback to the user_id-based tool. With input schema covering pagination and output schema covering return values, nothing essential is missing for an agent to invoke this tool correctly.

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%, and the page_token semantics are fully documented in the input schema. The tool-level description largely restates the profile_url precondition already present in the schema, so it adds no significant new parameter-level meaning beyond what structured metadata already provides.

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 clearly states the tool's action ('获取公开作品列表') and resource ('快手用户主页链接、短链接或分享文案'), distinguishing it from the user_id-based sibling tool by explicitly routing to the user_id entrance when a user_id is already available. It also adds a clear negative constraint ('不要传作品链接'), making the tool's scope unmistakable.

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?

The description gives explicit when-to-use guidance: direct profile URLs should be passed to this tool, while live/fw-user pages require first calling the user-profile entry and then using the returned user_id. It also states the alternative ('可直接使用 user_id 入口'), giving an agent a concrete routing rule instead of leaving it to inference.

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