MCP PROMPT · CONTENT & ORDERS

/publish-blog-post

Create and publish a CMS blog post with content blocks.

01 · The flow

What the agent does, in order.

  1. 01 Call list_post_types to find the "blog" post type code.
  2. 02 Call create_post with title + slug + postTypeCode to create a draft.
  3. 03 Call append_post_block multiple times to add content (heading, text, image, CTA).
  4. 04 Call update_post with status="published" and a publishedAt timestamp.
02 · Tools called

4 typed tools in sequence.

  • list_post_types
  • create_post
  • append_post_block
  • update_post

Every tool ships with MCP annotations (title, readOnlyHint, destructiveHint, openWorldHint, idempotentHint). Clients can gate destructive calls before invoking. Full catalog: /server-card.json.

Try this in your agent.

Connect FavCRM to Cursor, Claude, ChatGPT, or any MCP client. Type /publish-blog-post in chat. Agent runs the steps in order.

Verified .