list_webhook_deliveries
ActiveTool of Chronary
declared in 1.0.0
List delivery attempts for a webhook subscription, with per-status counts (pending/delivered/failed). Use this to debug failing deliveries. Requires an org-level API key.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"webhook_id"
],
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Max results to return"
},
"offset": {
"type": "integer",
"default": 0,
"maximum": 9007199254740991,
"minimum": 0,
"description": "Pagination offset"
},
"status": {
"enum": [
"pending",
"delivered",
"failed"
],
"type": "string",
"description": "Filter to a single delivery status"
},
"webhook_id": {
"type": "string",
"description": "Webhook subscription whose deliveries to list"
},
"include_payload": {
"type": "boolean",
"description": "Include the full event payload sent on each delivery"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
Chronary
https://github.com/Chronary/chronary-mcp
2/7 registries