Skip to main content
Glama

SocialDataX 抖音 Douyin MCP

douyin_get_user_info_by_sec_user_id

Read-only

根据抖音用户 sec_user_id 获取用户资料;已知 sec_user_id 时优先使用此入口。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sec_user_idYes抖音用户 sec_user_id,不透明标识;请传实际字段值,可从结果中的 sec_user_id 或 author.sec_user_id 复用;不要传公开抖音号 douyin_id、字段名或占位文本;只有主页链接时使用 profile_url 入口

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
bioYes用户简介;当前不可用时为空字符串
nameYes用户昵称
genderYes性别:male 表示男,female 表示女,unknown 表示未知
pointsYes本次成功调用的积分消耗与调用完成时的账户积分余额。
user_idYes用户 user_id;当前不可用时为空字符串
verifiedYes用户是否为认证账号
douyin_idYes用户主页展示的抖音号;当前不可用时为空字符串
live_infoYes用户直播状态摘要;用户当前未直播时为 null
avatar_urlYes用户头像链接;当前不可用时为 null
ip_locationYesIP 属地;当前不可用时为空字符串
profile_urlYes用户主页链接;当前不可用时为 null
sec_user_idYes用户 sec_user_id;当前不可用时为空字符串
follower_countYes粉丝数;当前不可用时为 null
following_countYes关注数;当前不可用时为 null
verification_labelYes用户认证文案;当前不可用时为空字符串
received_like_countYes用户内容累计收到的点赞数;当前不可用时为 null
posted_content_countYes用户已发布作品数量,包含视频、图文等作品;当前不可用时为 null

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • changedInput schema / properties / sec_user_id / description
      Previous value: -"抖音用户 sec_user_id;可从 author.sec_user_id 或用户资料结果中的 sec_user_id 继续复用"New value: +"抖音用户 sec_user_id,不透明标识;请传实际字段值,可从结果中的 sec_user_id 或 author.sec_user_id 复用;不要传公开抖音号 douyin_id、字段名或占位文本;只有主页链接时使用 profile_url 入口"
    • changedOutput schema / properties / sec_user_id / description
      Previous value: -"用户 sec_user_id;用户主页和作品工具可直接复用"New value: +"用户 sec_user_id;当前不可用时为空字符串"
  2. Changed2 schema fields changed
    • addedOutput schema / properties / points
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "本次成功调用的积分消耗与调用完成时的账户积分余额。",
      +  "properties": {
      +    "balance": {
      +      "description": "本次接口完成时看到的当前积分余额。",
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    "cost": {
      +      "description": "本次请求最终确认消耗的积分。",
      +      "minimum": 0,
      +      "type": "integer"
      +    }
      +  },
      +  "required": [
      +    "cost",
      +    "balance"
      +  ],
      +  "type": "object"
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "user_id",
      -  "sec_user_id",
      -  "name",
      -  "avatar_url",
      -  "profile_url",
      -  "bio",
      -  "verification_label",
      -  "verified",
      -  "follower_count",
      -  "following_count",
      -  "received_like_count",
      -  "douyin_id",
      -  "ip_location",
      -  "gender",
      -  "posted_content_count",
      -  "live_info"
      -]New value: +[
      +  "user_id",
      +  "sec_user_id",
      +  "name",
      +  "avatar_url",
      +  "profile_url",
      +  "bio",
      +  "verification_label",
      +  "verified",
      +  "follower_count",
      +  "following_count",
      +  "received_like_count",
      +  "douyin_id",
      +  "ip_location",
      +  "gender",
      +  "posted_content_count",
      +  "live_info",
      +  "points"
      +]
  3. Changed2 schema fields changed
    • addedOutput schema / properties / live_info
      Added value: +{
      +  "anyOf": [
      +    {
      +      "properties": {
      +        "is_live": {
      +          "description": "用户当前是否正在直播",
      +          "type": "boolean"
      +        },
      +        "live_url": {
      +          "anyOf": [
      +            {
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ],
      +          "description": "直播间页面链接;当前不可用时为 null"
      +        },
      +        "online_user_count": {
      +          "anyOf": [
      +            {
      +              "type": "integer"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ],
      +          "description": "请求时直播间在线人数快照;当前不可用时为 null"
      +        },
      +        "room_id": {
      +          "anyOf": [
      +            {
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ],
      +          "description": "直播间 ID;当前不可用时为 null"
      +        }
      +      },
      +      "required": [
      +        "is_live",
      +        "room_id",
      +        "live_url",
      +        "online_user_count"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "description": "用户直播状态摘要;用户当前未直播时为 null"
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "user_id",
      -  "sec_user_id",
      -  "name",
      -  "avatar_url",
      -  "profile_url",
      -  "bio",
      -  "verification_label",
      -  "verified",
      -  "follower_count",
      -  "following_count",
      -  "received_like_count",
      -  "douyin_id",
      -  "ip_location",
      -  "gender",
      -  "posted_content_count"
      -]New value: +[
      +  "user_id",
      +  "sec_user_id",
      +  "name",
      +  "avatar_url",
      +  "profile_url",
      +  "bio",
      +  "verification_label",
      +  "verified",
      +  "follower_count",
      +  "following_count",
      +  "received_like_count",
      +  "douyin_id",
      +  "ip_location",
      +  "gender",
      +  "posted_content_count",
      +  "live_info"
      +]
  4. First observed

TDQS

A4.1/5.0
Behavior3/5

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

The description is consistent with readOnlyHint and openWorldHint and describes a read-only lookup operation. It adds no behavioral context beyond the annotations, such as permission requirements, rate limits, failure modes, or data freshness, but for a simple one-parameter read-only tool the annotations already carry most of the safety burden.

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 compact sentence that front-loads the core action first and the selection preference second. There is no filler, redundancy, or repetition of structured schema information.

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 read-only lookup with one required parameter and a rich parameter description, the definition is complete. The output schema is present, annotations cover behavior, and the selection guidance tells an agent exactly when to choose this tool, so nothing needed for correct invocation is missing.

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 tool-level description merely restates that sec_user_id is the input and adds no meaning beyond the schema; the rich guidance about opaque identifiers and which values to avoid lives in the parameter description itself.

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 states a specific action and resource: fetching Douyin user profile data based on sec_user_id. It also indicates this entry is preferred when sec_user_id is known, clearly distinguishing it from sibling tools that use douyin_id or profile_url as the lookup key.

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

Usage Guidelines4/5

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

The description gives an explicit selection condition: use this tool when sec_user_id is known. The parameter description reinforces exclusions by warning not to pass douyin_id, field names, placeholders, and by routing profile-link cases to the profile_url entry. It does not explicitly name the by_douyin_id sibling as the fallback, so it stops short of a perfect 5.

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.

Resources