Skip to main content
Glama

SocialDataX 微博 Weibo MCP

weibo_get_video_speech_text_job

Read-only

继续查询用户提供的有效 job_id,或微博视频口播转文字 submit 工具返回的 job_id;每次最多等待 240 秒,不创建新任务或触发重处理。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes微博口播转文字任务 job_id;用户已提供时直接使用,否则使用 submit 工具返回的 job_id;不要传 post_id 或帖子链接。

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorYes失败或过期时的稳定错误结构;非终态或成功时为 null。
job_idYes任务 ID。
statusYes任务状态。
messageYes面向用户/AI 的状态说明。
platformYes任务所属平台。
source_idYes任务来源 ID。
content_idYes平台内容 ID。
transcriptYes成功时的口播转文字结果;非终态或失败时为 null。
is_terminalYes是否已终态。
next_actionYes非终态时建议的下一步查询动作。
content_metaYes作品上下文信息,便于结合转写内容做口播分析。
content_typeYes内容类型。
next_poll_after_secondsYes建议下次查询前等待的秒数;非终态时可用。

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, which the description complements by stating it does not create new tasks or trigger reprocessing, reinforcing the read-only nature. It adds a concrete behavioral trait: the 240-second maximum wait per call, which is not in the annotations. No contradictions detected.

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, dense sentence that front-loads the core purpose (query an existing job) and includes essential behavior (240s wait, no side effects). Every word earns its place; no fluff or redundant elaboration.

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?

For a one-parameter tool with an output schema present, the description adequately covers when to use it, what it does, and its behavioral limits. The only minor gap is the lack of explicit guidance on how long to keep polling or when to stop (e.g., 'until completion'), but the presence of an output schema and the wait-time hint make this sufficient for an agent to infer appropriate usage.

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%, with the job_id parameter fully documented including its source and exclusion of post_id. The description repeats the job_id origin ('用户提供的有效 job_id,或...submit 工具返回的 job_id') but adds no new parameter-level semantics beyond what the schema already states. Baseline 3 is appropriate given the schema carries the burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as a query operation for an existing speech-to-text job ('继续查询' = continue querying), tied to a job_id from the submit tool. It distinguishes itself from the submit siblings by explicitly stating it does not create new tasks or trigger reprocessing. However, it does not explicitly state whether it returns status, progress, or final result, leaving some ambiguity for the agent about the exact output nature.

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 implies usage after a submit call by referencing the submit tool's returned job_id and forbidding post_id. It also provides context on the wait behavior (up to 240 seconds) and side-effect-free nature, guiding the agent to use it for polling without re-submission. It does not explicitly say 'use this instead of the submit tools', but the contrast is implicit and sufficient.

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