Skip to main content
Glama

SocialDataX B站 Bilibili MCP

bilibili_get_user_posted_videos_by_profile_url

Read-only

根据 B 站用户主页链接、短链接或分享文案获取公开发布视频列表;不要传视频链接。如果上一步结果已返回 user_id,可直接使用 user_id 入口。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sort_typeNo用户发布视频排序方式:time_descending=最新发布,view_count_descending=最多播放,collect_count_descending=最多收藏。默认 time_descending。time_descending
page_tokenNoBilibili 用户发布视频列表分页令牌。首次请求留空。继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回;page_token 是不透明分页令牌;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。只能用于同一用户和同一排序方式的视频列表分页链路,不能跨能力、用户或排序复用。
profile_urlYesB 站用户主页链接、短链接或分享文案;不要传 user_id,不要传视频链接、BV 号或 aid;已有 user_id 时使用 by_user_id 工具。

Output Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already supply readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds that only publicly posted videos are returned and accepts several profile URL forms, but it does not disclose additional behavioral details beyond that; pagination behavior is handled in the schema. No 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?

Two short sentences convey purpose, accepted input forms, and key exclusions without filler. The most important routing information is front-loaded ahead of the schema details.

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?

With an output schema, full parameter descriptions, annotations, and explicit sibling differentiation, the definition provides everything needed to select and invoke the tool correctly. The guidance to avoid video links and to switch to the user_id tool is especially valuable.

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 coverage is 100%, and each parameter already has detailed documentation, including sort_type enums and the opaque page_token contract. The description mostly reiterates the profile_url constraints rather than adding new parameter-level meaning, so the baseline score of 3 is appropriate.

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?

States a specific action and resource type: '获取公开发布视频列表' from a B站用户主页链接, short link, or share text. It explicitly excludes wrong inputs ('不要传视频链接'), which distinguishes it from by_user_id and sibling content tools.

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?

Provides clear when-to-use guidance: use when given a profile URL/short link/share text; do not use for video links. It also explicitly routes to the user_id tool when user_id is already available, making the choice between by_profile_url and by_user_id unambiguous.

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