Smithery

webhook_create

Register a new outbound webhook endpoint. The signing secret is returned ONCE — store it before doing anything else. Default events=['*'] subscribes to every event type. Available events: screenshot.completed, screenshot.failed, run.completed, run.failed, quota.warning, test.ping.

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called webhook_create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "HTTPS URL that will receive POST requests"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Event types to subscribe to. Default ['*'] = all events."
    },
    "description": {
      "type": "string",
      "maxLength": 280,
      "description": "Optional human-readable description"
    }
  }
}