Ghost MCP Server

by MFYDev
Verified

list_tiers

Retrieve and format tier details from a Ghost blog, allowing users to specify output format (text or JSON), pagination, and item limits for organized access to membership tiers.

Instructions

Get the list of tiers from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of tiers per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing tier information

Input Schema

NameRequiredDescriptionDefault
formatNotext
limitNo
pageNo

Input Schema (JSON Schema)

{ "properties": { "format": { "default": "text", "title": "Format", "type": "string" }, "limit": { "default": 15, "title": "Limit", "type": "integer" }, "page": { "default": 1, "title": "Page", "type": "integer" } }, "title": "list_tiersArguments", "type": "object" }
ID: vor63xn7ky