Skip to main content
Glama

VarynForge

Get draft status

get_draft_status
Read-only

Re-read an article suggestion's verification state without re-linting: the suggestion's single pipeline status plus, per destination format, the stored draft and the latest gate receipt (verdict, per-check detail, thresholds) from its last lint_draft submission. Free and uncapped — always use this instead of lint_draft to recover a known verdict. Pass format to read one destination including the stored draft text; omit it for the per-destination overview (receipts only, no draft bodies). Status-ownership model: ONE suggestion status drives the pipeline while verdicts are per-destination (N receipts), and status transitions are forward-only — a later flagged submission on one destination never demotes a suggestion another destination already moved to ready_to_publish.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatNo
suggestionIdYes

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to repeat that. The description adds valuable behavioral context: the tool is free and uncapped, the status transitions are forward-only (a later flagged submission never demotes a suggestion), and the distinction between one suggestion status and N per-destination receipts. This goes beyond the annotation and helps the agent understand the tool's semantics. The only minor gap is not describing the exact response structure, but since there's no output schema, the description does a good job of explaining what will be returned (status, draft, gate receipt with verdict, per-check detail, thresholds).

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 dense but well-structured. It front-loads the core purpose and the key usage directive ('always use this instead of lint_draft'), then explains parameter behavior, then the ownership model. Every sentence adds value. It's slightly long but justified given the complexity of the status model. The structure is logical: purpose, usage, parameter semantics, and model explanation.

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?

Given the tool's complexity (one status vs N receipts, forward-only transitions, per-destination details), the description is remarkably complete. It explains what the tool returns (status, draft, gate receipt with verdict, per-check detail, thresholds), when to use it, and the underlying model. There's no output schema, so the description carries the full burden, and it does so thoroughly. An agent could call this tool correctly without additional information.

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 0%, so the description must compensate. It does: it explains the `format` parameter's semantics (pass it to read one destination including stored draft text; omit for overview without draft bodies) and implies `suggestionId` is the identifier for the suggestion. The description adds meaning beyond the schema's bare type definitions. However, it doesn't explicitly describe the `suggestionId` parameter beyond the context, but the name is self-explanatory. Given the 0% coverage, this is a strong compensation.

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 purpose: to re-read an article suggestion's verification state without re-linting, providing the pipeline status and per-destination draft and gate receipt. It distinguishes itself from lint_draft by explicitly saying to use this instead of lint_draft to recover a known verdict. The verb 're-read' and resource 'article suggestion's verification state' are specific and unambiguous.

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 usage guidance: 'always use this instead of lint_draft to recover a known verdict' and explains when to pass `format` (to read one destination including stored draft text) versus omit it (for per-destination overview without draft bodies). It also explains the status-ownership model, which helps the agent understand when to use this tool versus alternatives. This is exemplary 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.8/5.0
Disambiguation4/5

Most tools have distinct purposes, but a few pairs could confuse an agent: add_article_suggestion vs create_article_suggestion_with_input, and get_article_brief vs download_brief_markdown vs get_write_handoff all deal with brief content. The detailed descriptions help disambiguate, but the overlap is real.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case (create_project, list_opportunities, generate_article_brief, lint_draft). There is no mixing of camelCase, acronyms, or vague verbs, making the naming predictable and readable.

Tool Count2/5

50 tools is excessive for an MCP server, even for a broad platform like content operations. While the scope is large, this many tools will overwhelm agents and increase latency and context cost. Most practical servers are well under 25.

Completeness4/5

The tool surface covers the full content lifecycle: project creation, research, opportunity clustering, content planning, briefs, drafting, linting, publishing, and reporting. Minor gaps exist (e.g., no delete_project, no remove_destination, no direct analytics beyond distributions), but they are workarounds or handled in the web UI.

Resources