Skip to main content
Glama

SocialDataX 快手 Kuaishou MCP

kuaishou_get_user_info_by_profile_url

Read-only

根据快手用户主页链接、短链接或分享文案获取用户资料;支持 live 主页和 fw/user 用户主页分享链接,成功时会返回可复用的非空 user_id;不要传作品链接。如果上一步结果已返回非空 user_id,可直接使用 user_id 入口。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profile_urlYes快手用户主页链接、短链接或分享文案;不要传作品链接。支持 live 主页或 fw/user 形式的用户主页分享链接;成功时会返回可复用的非空 user_id。如果上一步结果已返回非空 user_id,可直接使用 user_id 入口。

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
bioYes用户简介;不可用时为空字符串。
nameYes用户名称。
genderYes用户性别。
pointsYes本次成功调用的积分消耗与调用完成时的账户积分余额。
user_idYes快手用户非空 user_id;可作为后续需要快手用户 user_id 的工具输入。
avatar_urlYes用户头像链接;不可用时为 null。
kuaishou_idYes快手号;不可用时为 null。
profile_urlYes快手用户主页链接;不是作品分享页链接;可作为后续需要快手用户主页 URL 的工具输入;查询用户作品列表时需确认同一用户结果包含非空 user_id;不可用时为 null。
follower_countYes粉丝数;不可用时为 null。
following_countYes关注数;不可用时为 null。
received_like_countYes获赞数;表示用户内容累计收到的点赞数;不可用时为 null。
posted_content_countYes公开作品数;不可用时为 null。

TDQS

A4.5/5.0
Behavior4/5

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

The description discloses key behaviors: supports live and fw/user share links, returns a reusable non-empty user_id on success, and rejects work links. Annotations already cover read-only safety (readOnlyHint: true), so the description adds value by detailing the return value guarantee and input constraints. No contradiction with annotations.

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, well-structured sentence that front-loads the purpose and flows logically through input types, success behavior, exclusions, and usage guidance. Every clause earns its place; no filler or redundancy.

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 simple one-parameter read-only tool with an output schema, the description covers all necessary context: input formats, supported link types, prohibited input, output behavior (non-empty user_id), and when to use an alternative. It is complete for the tool's complexity.

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?

The schema already provides 100% coverage for the single parameter profile_url, with the same detailed description of accepted formats and constraints. The tool description adds no new semantic information beyond what's in the schema, so the baseline 3 applies. It simply reinforces 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 clearly states the tool's function: '根据快手用户主页链接、短链接或分享文案获取用户资料' (get user profile from profile URL). It specifies the exact input type (profile URL, short link, share text) and distinguishes from sibling tools by mentioning the user_id entry and excluding work links. This is a specific verb+resource with clear differentiation.

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 explicitly says '如果上一步结果已返回非空 user_id,可直接使用 user_id 入口', advising to use the user_id entry (sibling tool) when a non-empty user_id already exists. It also says '不要传作品链接' (don't pass work links), providing a clear exclusion. This is explicit when-to-use and when-not-to-use guidance with a stated alternative.

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