Skip to main content
Glama

SocialDataX B站 Bilibili MCP

bilibili_get_content_comments_by_id

Read-only

根据 Bilibili 内容 ID 获取视频、专栏或动态的一级评论列表。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sort_typeNo评论排序方式:hot=最热,time_descending=最新。默认 hot。hot
content_idYesBilibili 内容 ID;用于获取一级评论。视频优先传 bvid(BV...);如果只有视频 aid,建议传 av{aid}(如 av116668525186915)以明确表示视频评论区;不建议直接传裸数字 aid,因为裸数字也可能是专栏/动态评论区 ID。专栏可传 cv 专栏 ID(如 cv9689859),动态/opus 可传 /opus/{id} 或 /dynamic/{id} 路径中的数字 post_id。不要传 comment_object_id、comment_id、链接或分享文案。
page_tokenNoBilibili 一级评论分页令牌。首次请求留空。继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回;page_token 是不透明分页令牌;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。只能用于同一内容、同一排序和同一入口的评论分页链路;content_id 入口 / by_id 工具返回的 token 只能继续用于 content_id 入口 / by_id 工具,url 入口 / by_url 工具返回的 token 只能继续用于 url 入口 / by_url 工具;不能跨能力、入口、内容或排序复用。

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes当前页内容评论列表。
pointsYes本次成功调用的积分消耗与调用完成时的账户积分余额。
comment_countYes平台返回的评论总数,通常包含一级评论和回复;不是当前页数量,也不等于 items 中一级评论条数;不可用时为 null。
next_page_tokenYes下一页不透明分页令牌;为空表示没有更多一级评论。继续获取一级评论下一页时,必须将返回的完整 next_page_token 原样作为 page_token 传回,并沿用本次调用入口;content_id 入口 / by_id 工具返回的 token 只能继续用于 content_id 入口 / by_id 工具,url 入口 / by_url 工具返回的 token 只能继续用于 url 入口 / by_url 工具。不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容;不能跨能力、入口、内容或排序复用。

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true and openWorldHint=true, and the description's '获取' aligns with this. The description adds useful behavioral context beyond annotations: it explicitly limits results to first-level comments and, through the page_token parameter description, discloses strict opaque pagination rules (no modification, no cross-content/sort/entry reuse).

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 front-loaded sentence with no filler. It efficiently conveys the core purpose and scope without repeating structured information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The schema descriptions, output schema, and readOnly annotation make the definition substantially complete for correct invocation. The only notable gap is the absence of an explicit statement about when to prefer this tool over the by_url or reply siblings, though the names and parameter guidance largely compensate.

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 schema itself provides rich, precise meanings for all three parameters, including detailed guidance for content_id formats and opaque token handling. The top-level description adds no additional parameter semantics beyond what the schema already supplies, so the baseline of 3 applies.

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 uses a specific verb ('获取') and resource ('一级评论列表') scoped to videos, articles, and dynamics keyed by Bilibili content ID. This clearly distinguishes it from sibling tools such as the by_url variant and the replies-by-comment_id tool.

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

Usage Guidelines3/5

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

Use is implied by the description and tool name: this is the ID-based entry point for first-level comments. However, the description never explicitly states 'use by_url when you have a URL' or contrasts with the reply tool, so the agent must infer tool selection from sibling names rather than receive direct routing guidance.

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