Ghost MCP Server

by MFYDev
Verified

search_posts_by_title

Find and retrieve posts from the Ghost CMS by searching their titles. Specify a query to locate matches, with an option for exact title matches, and receive detailed post information in a formatted response.

Instructions

Search for posts by title.

Args: query: The title or part of the title to search for exact: If True, only return exact matches (default: False) ctx: Optional context for logging Returns: Formatted string containing matching post information Raises: GhostError: If there is an error accessing the Ghost API

Input Schema

NameRequiredDescriptionDefault
exactNo
queryYes

Input Schema (JSON Schema)

{ "properties": { "exact": { "default": false, "title": "Exact", "type": "boolean" }, "query": { "title": "Query", "type": "string" } }, "required": [ "query" ], "title": "search_posts_by_titleArguments", "type": "object" }
ID: vor63xn7ky