Skip to main content
Glama

mcp-coreclaw

verify_run

Read-onlyIdempotent

Verify a CoreClaw worker run produced real, usable data and return a structured PASS/NO_DATA/FAILED/ERROR_RECORD verdict.

WHEN TO USE: Use after a run reaches a terminal state to get an acceptance verdict without manually inspecting result rows. Distinguishes genuine data from error records (e.g. CAPTCHA/403 rows that populate the list but carry no real payload) — a common false-PASS trap. 中文触发: 当用户要在 CoreClaw 中查询、运行、重跑、停止、导出或查看对应 worker/run/task 数据时使用。

WHEN NOT TO USE: Do not use public web search or code search for private CoreClaw platform data. Do not call excluded internal worker-version or internal-detail APIs.

RETURNS: JSON: {verdict, status, count, real_field_count, sample_fields[], err_msg, err_lines[]}. verdict: PASS|NO_DATA|FAILED|ERROR_RECORD|RUNNING|SUBMIT_FAIL.

WORKFLOW: Call after poll_run or get_worker_run shows a terminal state. Use get_worker_run_log for failure diagnosis and export_worker_run_results for full data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many leading result rows to inspect for the real-data sniff. (default: 5)
run_idYesWorker run identifier. Example: "01KKDXV2G26BT7NH4ZQR2R4NPZ". Obtain from run_worker, list_worker_runs, or get_last_worker_run.

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, but the description adds key behavioral details: it inspects leading result rows ('real-data sniff'), returns specific verdicts including ERROR_RECORD to avoid false-PASS traps, and explains the JSON return structure. This goes beyond annotations by clarifying the validation logic and the meaning of verdicts.

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 well-structured with clear sections (WHEN TO USE, WHEN NOT TO USE, RETURNS, WORKFLOW) and front-loads the core purpose. However, it includes some extraneous content: the '中文触发' section is overly broad and unrelated to verification, and 'Do not call excluded internal worker-version or internal-detail APIs' is vague and not tool-specific. Still, most sentences earn their place.

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?

For a tool with no output schema, the description is impressively complete. It covers the purpose, usage timing, alternatives, return values with all verdicts and fields, and workflow integration with sibling tools. An agent can confidently decide when and how to invoke this tool, and understand what to expect in response.

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%, so both parameters (run_id and limit) already have descriptions. The tool description does not significantly add semantic meaning beyond the schema; it only indirectly references the limit via 'real-data sniff' and the run_id via workflow examples. Since the schema does most of the work, 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?

The description clearly states the tool's function: 'Verify a CoreClaw worker run produced real, usable data and return a structured PASS/NO_DATA/FAILED/ERROR_RECORD verdict.' It uses a specific verb (verify), names the resource (CoreClaw worker run), and specifies the outcome (verdict). It also differentiates itself from sibling tools like get_worker_run or poll_run by emphasizing that it distinguishes genuine data from error records, which is a unique acceptance-check role.

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 'WHEN TO USE' and 'WHEN NOT TO USE' sections. It states to use after a run reaches a terminal state and mentions using get_worker_run_log for failure diagnosis and export_worker_run_results for full data, giving alternatives. It also clearly warns against using public search or internal APIs for this private data. This is thorough and actionable 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.

TDQS

A3.7/5.0
Disambiguation3/5

Most tools follow a systematic scope pattern (user's last run, worker's last run, specific run), so intent is discernible, but the reversed word order (e.g., get_last_worker_run vs get_worker_last_run) makes many tools easy to conflate. Descriptions are thorough, yet the sheer number of near-identical names creates real misselection risk.

Naming Consistency3/5

Verbs and nouns are consistently snake_case, but the modifier order alternates unpredictably—some tools say last_worker_run, others worker_last_run—across abort/export/get/list/rerun groups. This inconsistency makes the set feel less coherent than a strict verb_noun pattern would.

Tool Count2/5

At 42 tools, the surface is heavily inflated by triplicating every run-related action across user-last, worker-last, and specific-run scopes. Many of these could be consolidated into a single tool with optional worker_id/run_id parameters, making the count feel excessive for the domain.

Completeness4/5

The surface covers the full lifecycle of workers, runs, tasks, queue, and account, including poll/verify/batch operations that go beyond basic CRUD. Minor gaps exist (e.g., no explicit run-input retrieval, no worker editing), but agents can achieve all common workflows without dead ends.

Resources