Ghost MCP Server

by MFYDev
Verified

read_post

Get the full content and metadata of a specific blog post.

Args: post_id: The ID of the post to retrieve ctx: Optional context for logging Returns: Formatted string containing all post details including: - Basic info (title, slug, status, etc) - Content in both HTML and Lexical formats - Feature image details - Meta fields (SEO, Open Graph, Twitter) - Authors and tags - Email settings - Timestamps Raises: GhostError: If there is an error accessing the Ghost API

Input Schema

NameRequiredDescriptionDefault
post_idYes

Input Schema (JSON Schema)

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