Ghost MCP Server

by MFYDev
Verified

search_posts_by_title

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" }