Skip to main content
Glama

SocialDataX 微信视频号 WeChat Channels MCP

wechat_get_video_comments_by_object_id

Read-only

已有同一条视频的 object_id 和 object_nonce_id 时获取评论列表;用户已提供合法组合时直接使用,否则可从作品详情结果或一级评论结果获取;搜索结果只有 encrypted_object_id 时先调用详情工具。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
object_idYes微信视频号视频的 object_id,例如 14882122090270235141;用户已提供时直接使用,否则可从作品详情或一级评论结果获取;获取评论或评论回复时请与同一条视频的 object_nonce_id 一起原样传入。
page_tokenNo评论分页令牌;首次请求留空,继续翻页时必须将上一页返回的完整 next_page_token 原样传回。
object_nonce_idYes微信视频号视频的 object_nonce_id,例如 12801331239707625908_0_39_0_0;用户已提供时直接使用,否则可从作品详情或一级评论结果获取;获取评论或评论回复时请与同一条视频的 object_id 一起原样传入。

Output Schema

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

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the non-mutating nature and external-world interactions. The description does not contradict these annotations and adds minor context about how to obtain the IDs, but it does not disclose additional behaviors such as rate limits, error handling, or exactly what happens on invalid IDs. Given annotation coverage, this level is acceptable.

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 efficiently conveys the purpose and usage constraints without redundancy. It is front-loaded with the main condition (having the IDs) and then provides actionable routing guidance, maintaining good structure despite being compact.

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 simplicity (comment list retrieval with pagination), the description adequately covers the primary scenario and input requirements. Output schema handles return values, and page_token pagination is documented in the schema. The description also addresses how to obtain IDs when not supplied, making it reasonably complete for an agent to call correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so each parameter is already documented. The description adds meaningful value by stating that object_id and object_nonce_id must be passed together and unchanged, and by guiding the agent on where to acquire them if not initially provided. This goes beyond bare schema definitions and clarifies the relationship between the two required parameters.

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 operation — fetching the comment list for a given video — and explicitly names the required identifiers (object_id and object_nonce_id). It clearly differentiates itself from sibling tools like wechat_get_video_comments_by_url (which uses a URL) and wechat_get_video_comment_replies_by_comment_id (which handles replies), so an agent can distinguish it without inspecting schemas.

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 states when to use the tool (when object_id and object_nonce_id are already available) and provides fallback sources for obtaining them (from detail or first-level comment results). It also tells the agent to call the detail tool first when only an encrypted_object_id is present, effectively excluding the wrong paths and routing to the correct sibling.

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.8/5.0
Disambiguation3/5

多个工具围绕同一资源提供不同输入变体(如用户信息、评论列表、视频详情都有URL和ID版本),功能高度重叠,但描述中明确说明了使用条件和调用指引,降低了误选风险。仍有部分工具如wechat_get_video_comments_by_object_id和by_url容易混淆,区分度中等。

Naming Consistency4/5

命名整体遵循wechat_get_<resource>_by_<input>或wechat_submit_<resource>_by_<input>模式,但存在socialdatax_get_points_balance和wechat_get_video_speech_text_job两个例外,前缀和结构不一致,不过多数工具遵循清晰模式,偏差较小。

Tool Count4/5

16个工具对于微信视频号API的复杂性而言是合理的,覆盖了用户、作品、评论、搜索、口播转文字等多个领域。虽然部分工具是不同输入方式的变体,但整体数量没有过度膨胀,每个工具都有明确用途。

Completeness4/5

工具集覆盖了视频号的主要查询功能(用户信息、作品列表、视频详情、评论、搜索、热榜)以及口播转文字的任务提交和查询,基本满足常规需求。缺少如更新、删除等写操作,但可能超出API能力,整体没有明显死角。

Resources