Skip to main content
Glama
furkankoykiran

@furkankoykiran/coderlegion-mcp

edit_post

Update an existing CoderLegion post by ID and slug, changing its title, Markdown content, tags, or category to keep published articles current.

Instructions

Edit an existing post on CoderLegion

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPost ID (numeric)
slugYesPost URL slug
tagsNoNew comma-separated tags
titleNoNew title
contentNoNew content in Markdown
categoryNoNew category ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.1

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Edit' implies mutation, but the description does not state whether this requires specific permissions, whether edits are immediately visible, what happens to omitted fields (partial vs. full update), or any side effects. This is a significant gap for a mutation tool.

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, front-loaded sentence with zero waste. It efficiently states the tool's purpose without unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a mutation tool with six parameters (two required) and no annotations or output schema, the description is incomplete. It fails to address permissions, partial update behavior, or return values. The schema covers parameters, but behavioral context is missing.

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 the schema already documents all six parameters in detail (e.g., types, enum for category). The description adds no additional meaning beyond what the schema provides. Baseline 3 is appropriate when schema does the heavy lifting.

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?

States a clear verb+resource: 'Edit an existing post on CoderLegion.' This distinguishes it from sibling tools like create_post, delete_post, and get_post. However, it does not differentiate from edit_profile explicitly beyond the resource name, and provides no detail on what aspects of the post can be edited.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication, ownership), nor does it indicate when editing is appropriate or when other tools like delete_post or create_post might be better. There is no when/when-not guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.