Skip to main content
Glama

Update an article

update_article
Idempotent

Change the title, body, or tags of an article or draft that already exists.

Only the fields you pass are touched; omitted fields keep their current values. Passing tags REPLACES the whole tag list rather than adding to it, so send the full set you want. Editing a published article changes what readers see immediately; it does not unpublish or re-date it.

Safe to repeat: the same call twice leaves the same result. Requires an API key, and the account must own the article. Errors if no updatable field is supplied. Returns the updated article.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesArticle or draft id from a listing tool. This is the id, not the slug.
tagsNoReplacement tag list, up to 10. Overwrites the existing tags entirely.
titleNoReplacement headline.
body_markdownNoReplacement body as Markdown. Replaces the whole body, not a patch.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changed
    • changedInput schema / properties / body_markdown / description
      Previous value: -"New body in Markdown"New value: +"Replacement body as Markdown. Replaces the whole body, not a patch."
    • changedInput schema / properties / id / description
      Previous value: -"Article or draft ID"New value: +"Article or draft id from a listing tool. This is the id, not the slug."
    • changedInput schema / properties / tags / description
      Previous value: -"Replace the tag list"New value: +"Replacement tag list, up to 10. Overwrites the existing tags entirely."
    • changedInput schema / properties / title / description
      Previous value: -"New title"New value: +"Replacement headline."
  2. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Even with annotations present, the description adds substantial behavioral context: partial updates ('omitted fields keep their current values'), tag-list replacement semantics, immediate effect on published articles without unpublishing or re-dating, idempotency ('same call twice leaves the same result'), ownership requirement, and the error case for empty updates. It complements the annotations without contradicting them.

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 front-loaded with the core purpose, followed by concise paragraphs on behavior, safety, and requirements. Every sentence earns its place: partial updates, tag replacement, publication behavior, idempotency, permissions, error condition, and return value are all covered without fluff.

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 4-parameter mutation tool with no output schema, the description covers everything an agent needs: what fields can change, how partial updates behave, the special tag-list behavior, side effects on published content, repeatability, authentication/ownership prerequisites, and the returned value. Nothing critical is missing.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds critical parameter semantics beyond the schema: 'Only the fields you pass are touched' clarifies that all parameters are optional once id is provided, and 'Passing tags REPLACES the whole tag list' explains the replacement behavior. It also groups the trivially named title/body/tags into a meaningful list and warns about the 'no updatable field' error condition, fully compensating for any gaps.

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 opens with 'Change the title, body, or tags of an article or draft that already exists,' which pairs a specific verb ('Change') with a clear resource ('article or draft') and explicit fields. It clearly distinguishes update_article from siblings like create_draft and publish_article by emphasizing the 'already exists' scoping.

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 provides clear context for when to use the tool: to alter specific fields of an existing article/draft, with partial-update semantics. It also gives important usage constraints ('send the full set' for tags, requires API key/ownership, errors if no updatable field). It does not explicitly name alternative tools or say 'use create_draft instead,' so it stops short of a 5.

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

A4.4/5.0
Disambiguation5/5

Tools have clear, distinct purposes. Even similar tools like generate_title_seo and suggest_titles are clearly separated by input type (topic vs draft). The descriptions are exhaustive, preventing confusion.

Naming Consistency5/5

All tools use lowercase snake_case with verb-first naming. Slight inconsistency: 'upgrade' is a bare verb while others are verb_noun, but overall pattern is consistent.

Tool Count4/5

23 tools is a large but justifiable set for a full-featured blogging platform covering articles, series, reactions, newsletter, analytics, and AI assistance. It borders on the high end but remains scoped.

Completeness2/5

The tool set covers creation, publishing, updating, and listing of articles, but lacks delete operations for articles and series, and offers no comment management beyond reading. This leaves notable lifecycle gaps.