Ghost MCP Server

by MFYDev
Verified

list_users

Retrieve and manage Ghost blog user lists by specifying format, pagination, and limit options. Output user details in text or JSON format for easy integration.

Instructions

Get the list of users from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of users per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing user 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_usersArguments", "type": "object" }
ID: vor63xn7ky