Handles the full webhook lifecycle for AI agents: sending POST requests with retries and exponential backoff, validating HMAC signatures for Stripe, GitHub, and Slack using timing-safe comparison, and generating realistic test payloads for common events like payment_intent.succeeded or push notifications. The debug tool parses headers, detects providers, checks signature validity and timestamp freshness in one pass. Useful when your agent needs to trigger webhooks to external services, verify incoming webhook authenticity, or simulate webhook scenarios during development without hitting live endpoints.
Webhook management and testing tools for AI agents, built on the Model Context Protocol.
Send a webhook payload to any URL with custom headers, body, and content-type. Supports automatic retry with exponential backoff and jitter. Returns detailed attempt records including status codes, timing, and errors.
Validate webhook signatures using HMAC-SHA256 or HMAC-SHA1. Includes built-in patterns for:
t=TIMESTAMP,v1=SIGNATURE format with timestamp tolerancesha256=SIGNATURE or sha1=SIGNATURE formatv0=SIGNATURE with v0:timestamp:body signing schemeUses timing-safe comparison to prevent timing attacks.
Generate realistic webhook payloads for testing. Supported events:
| Service | Events |
|---|---|
| Stripe | payment_intent.succeeded |
| GitHub | push, pull_request |
| Slack | message |
Each payload includes randomized IDs, current timestamps, and suggested headers. Use the overrides parameter to customize specific fields.
Analyze a webhook request end-to-end:
Calculate a retry schedule with exponential backoff. Shows each attempt's delay, cumulative elapsed time, and scheduled ISO timestamp. Configurable base delay, max delay cap, multiplier, and jitter.
npm install
npm run build
Add to your MCP client config:
{
"mcpServers": {
"webhook-tools": {
"command": "node",
"args": ["path/to/mcp-webhook-tools/dist/index.js"]
}
}
}
MIT
makafeli/n8n-workflow-builder
danishashko/make-mcp
lukisch/n8n-manager-mcp
io.github.us-all/airflow
io.github.infoinlet-marketplace/mcp-workflow