Ghost MCP Server

by MFYDev
Verified

delete_user

Delete a user from Ghost.

Args: user_id: ID of the user to delete (required) ctx: Optional context for logging Returns: Success message if deletion was successful Raises: GhostError: If the Ghost API request fails or if attempting to delete the Owner ValueError: If user_id is not provided

Input Schema

NameRequiredDescriptionDefault
user_idYes

Input Schema (JSON Schema)

{ "properties": { "user_id": { "title": "User Id", "type": "string" } }, "required": [ "user_id" ], "title": "delete_userArguments", "type": "object" }