Netlify MCP Server

manage-hook

Manage webhook notifications

Input Schema

NameRequiredDescriptionDefault
actionYesAction to perform
eventYesEvent type
siteIdYesSite ID or name
urlYesWebhook URL

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Action to perform", "enum": [ "create", "delete", "update" ], "type": "string" }, "event": { "description": "Event type", "type": "string" }, "siteId": { "description": "Site ID or name", "type": "string" }, "url": { "description": "Webhook URL", "type": "string" } }, "required": [ "siteId", "event", "url", "action" ], "type": "object" }