Ghost MCP Server

by MFYDev
Verified

delete_webhook

Delete a webhook from Ghost.

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

Input Schema

NameRequiredDescriptionDefault
webhook_idYes

Input Schema (JSON Schema)

{ "properties": { "webhook_id": { "title": "Webhook Id", "type": "string" } }, "required": [ "webhook_id" ], "title": "delete_webhookArguments", "type": "object" }