Skip to main content
Glama

create_blog_post_from_markdown

Convert Markdown into PlateJS JSON and save it as a draft blog post for Studio review, with optional category linking by slug.

Instructions

Convert a Markdown body to PlateJS JSON and insert as a draft blog post. Status is ALWAYS "draft" — agents cannot publish directly; Studio review is required. Optionally links the post to an existing category by slug. Uses @awc/content-core CLI (convert-plate) for Markdown → PlateJS conversion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesURL-friendly English slug. Lowercase letters, digits, hyphens only.
titleYesPost title
excerptNoShort summary (~100 chars, shown in listings)
meta_titleNoSEO meta_title. META_TITLE_SUFFIX env 가 있으면 default = "{title} | {suffix}", 없으면 {title} 만.
variant_idNoOptional variant(id) to link this blog_post to (1:1). Use the id returned by create_variant with format=blog. When set, the derivative appears on the Content detail Variants card automatically.
ai_generatedNotrue if the agent generated the full text; false if human-written content
reading_timeNoEstimated reading time in minutes
category_slugNoBlog category slug (e.g. "case-study", "column"). Use list_blog_categories to discover.
markdown_bodyYesFull blog post body in Markdown (will be converted to PlateJS)
meta_keywordsNoSEO keyword array
thumbnail_urlNoOptional thumbnail image URL
meta_descriptionNoSEO meta_description (~155 chars)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the always-draft status, that agents cannot publish, that Studio review is required, and that a specific CLI performs the conversion. It omits auth/permission needs and what happens on a duplicate slug or conversion failure, but the critical behavioral constraint is surfaced.

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?

Three tightly written sentences with the primary action front-loaded and the draft constraint immediately after. No filler; each sentence contributes a distinct fact.

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 12-parameter mutation tool with no annotations and no output schema, the description covers the essential behavioral constraint and the conversion mechanism. The notable gap is that it never says what is returned (e.g. the new post id), which matters more given the absence of an output schema.

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 all 12 parameters are already documented in the schema. The description only restates two of them (markdown_body conversion, category_slug linking), adding no syntax, format, or default details beyond what the schema provides. Baseline 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?

States a specific verb chain (convert Markdown → PlateJS JSON) and a specific resource (draft blog post), which cleanly distinguishes it from update_blog_post and create_content. An agent can tell what this does without opening the schema.

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?

Clearly conveys the usage context: use it to insert a Markdown body as a draft, with category linking by slug. The draft-only constraint is spelled out, but it never names a sibling (e.g. update_blog_post for edits, create_content for non-blog content) to route the agent between alternatives.

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