Skip to main content
Glama

VarynForge

Mark article published

mark_article_published
Destructive

Record that an article went live at a URL. Flips the suggestion to published, writes the distribution ledger row, stamps the Passport, and pings IndexNow. Call it only once the URL actually resolves — the IndexNow ping fires immediately, and a ping for a dead URL is wasted (search engines crawl, hit the 404, drop it; nothing re-pings later). For a CMS-scheduled article, set scheduledFor via update_article_status and stay in ready_to_publish: publish auto-detect attests it (and pings IndexNow) when it appears. Use this instead of update_article_status for the published transition — a status flip alone records no URL, and without a URL the article is invisible to Search Console outcome tracking (clicks/impressions on the Earnings page). Also works on an already-published suggestion to attach a missing or corrected URL. Pass publishedAt (ISO datetime, must not be in the future) when the article went live EARLIER than this call — e.g. attesting after the fact or matching a CMS publish date — so the record carries the real go-live moment instead of the call time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
publishedAtNo
publishedUrlYes

TDQS

A4.8/5.0
Behavior5/5

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

Annotations provide only readOnlyHint=false and destructiveHint=true, but the description goes far beyond: it lists all side effects, discloses that the IndexNow ping fires immediately, and explains the irreversible consequence of pinging a dead URL ('nothing re-pings later'). This gives the agent a real behavioral model of a mutation with lasting external effects.

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 long, but every sentence earns its place: purpose, side effects, timing precondition, alternative path, sibling comparison, edge case, and parameter semantics each carry distinct information with zero filler. The core purpose is front-loaded in the opening sentence, and the caveats flow in logical order.

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 complex, destructive mutation with side effects and an irreversible external ping, the description covers essentially everything the agent needs: what happens, when to call, when not to, and the alternative. The only gap is return-value information — there is no output schema, and the description never states what the call returns — which is minor for correct invocation.

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?

With 0% schema description coverage, the description compensates richly for publishedAt (ISO datetime, must not be in the future, when to provide it, why) and implicitly for publishedUrl (the URL that the article 'went live at'; without it the article is invisible to outcome tracking). The id parameter is only implied as 'the suggestion' rather than explicitly tied to the id field, which is a minor gap for a required parameter.

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 first sentence states a specific verb and resource: 'Record that an article went live at a URL.' It lists concrete side effects (flips suggestion to published, writes ledger row, stamps Passport, pings IndexNow) and explicitly differentiates itself from update_article_status, so an agent can unambiguously tell which sibling to invoke.

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 gives an explicit precondition ('Call it only once the URL actually resolves'), names the alternative for CMS-scheduled articles (update_article_status with scheduledFor, staying in ready_to_publish), and states exactly why this tool is preferred for the published transition (a status flip alone records no URL and breaks Search Console tracking). No usage decision is left to inference.

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