MCP server for webhooks: send payloads, validate HMAC signatures, generate Stripe/GitHub/Slack payloads, debug requests, calculate retry schedules
SaferSkills independently audited Mcp Webhook Tools (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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 buildAdd to your MCP client config:
{
"mcpServers": {
"webhook-tools": {
"command": "node",
"args": ["path/to/mcp-webhook-tools/dist/index.js"]
}
}
}MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.