Ghost MCP Server

by MFYDev
Verified

delete_post

Delete a blog post.

Args: post_id: The ID of the post to delete ctx: Optional context for logging Returns: Success message if post was deleted Raises: GhostError: If there is an error accessing the Ghost API or the post doesn't exist

Input Schema

NameRequiredDescriptionDefault
post_idYes

Input Schema (JSON Schema)

{ "properties": { "post_id": { "title": "Post Id", "type": "string" } }, "required": [ "post_id" ], "title": "delete_postArguments", "type": "object" }