Skip to main content
Glama

SocialDataX 微博 Weibo MCP

weibo_get_post_comment_replies_by_comment_id

Read-only

根据 post_id 和一级评论 comment_id 获取微博评论回复;用户已提供完整合法的 ID 组合时直接使用;已有 post_id、帖子链接或分享文案但缺少必需 ID 时,调用对应一级评论工具获取同一条一级评论的 post_id 和 comment_id;缺少帖子定位信息时向用户索取;支持 page_token 翻页。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
post_idYes微博帖子长 ID;调用评论回复工具时必填,需与一级评论 comment_id 同时传入;用户已提供时直接使用,否则从一级评论结果 items[*].post_id 复用。
comment_idYes微博一级评论 ID;用户已提供时直接使用,否则可从一级评论结果 items[*].comment_id 复用;需与同一项 post_id 同时传入,不要传评论回复项的 comment_id。
page_tokenNo微博评论回复分页令牌。首次请求留空。继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回;page_token 是不透明分页令牌;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。只能用于同一帖子下同一一级评论的回复分页链路,不能跨帖子或评论复用。

Output Schema

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

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds valuable context beyond that: the dependency on both post_id and comment_id from the same first-level comment, the requirement to pass page_token unchanged and not reuse it across different posts/comments, and the fallback conditional flow. No contradiction with annotations; the description enriches the behavioral profile.

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 a single, dense sentence that front-loads the main purpose and then covers usage conditions and pagination. It is appropriately sized for the complexity, though it could be broken into clearer sentences. Still, it is efficient and well-structured.

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?

Given the tool's complexity (two required IDs, pagination, fallback scenarios) and the existence of an output schema, the description covers essential decisions and pagination rules. It does not describe return format (handled by output schema) but sufficiently guides an agent on how to obtain and validate inputs.

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?

Input schema coverage is 100% with detailed parameter descriptions. The tool description itself does not add much beyond the schema regarding parameter format or constraints, though it does reinforce the usage conditions (e.g., when to directly use provided IDs vs. fetching them). This meets the baseline given full schema coverage.

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 retrieves Weibo comment replies for a specific first-level comment, using post_id and comment_id. It explicitly names the resource (comment replies) and distinguishes from sibling tools like weibo_get_post_comments_by_post_id by specifying it is for replies to a first-level comment.

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 provides explicit decision logic: if the user has complete IDs, use them directly; if partial info is available, call the corresponding first-level comment tool to retrieve IDs; if no post location info, ask the user. This clearly guides when to invoke this tool versus alternatives.

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

A3.9/5.0
Disambiguation5/5

每个工具都明确对应一个特定的数据获取操作(热搜、帖子详情、评论、点赞、转发、用户信息、用户帖子、搜索、视频语音转文字),通过资源类型和获取方式进行区分。虽然存在 by_post_id 和 by_post_url 成对工具,但描述清晰指出不同输入方式,没有实质重叠。

Naming Consistency5/5

所有工具均使用 snake_case 命名,统一以 weibo_ 前缀开头,遵循 '动词_目标_定位方式' 模式(如 get_post_comments_by_post_id、submit_video_speech_text_by_post_url),命名规则高度一致且可预测。

Tool Count4/5

19个工具对于微博数据获取服务来说略多,但每个工具都有明确的职责,且成对出现的 URL 和 ID 变体是合理设计。数量在可接受范围内,没有冗余或缺失。

Completeness4/5

覆盖了微博的主要只读数据获取场景:热搜、帖子详情、评论、点赞、转发、用户信息、用户帖子、搜索、视频语音转文字。缺少发帖或删除等写操作,但该服务器定位为数据获取,故不算严重缺口。视频语音转文字提供了提交和查询两个环节,生命周期完整。

Resources