Webhook Tools
FreeNot checkedMCP server for webhooks: send payloads, validate HMAC signatures, generate Stripe/GitHub/Slack payloads, debug requests, calculate retry schedules
About
MCP server for webhooks: send payloads, validate HMAC signatures, generate Stripe/GitHub/Slack payloads, debug requests, calculate retry schedules
README
Webhook management and testing tools for AI agents, built on the Model Context Protocol.
Tools
webhook_send
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.
webhook_validate
Validate webhook signatures using HMAC-SHA256 or HMAC-SHA1. Includes built-in patterns for:
- Stripe —
t=TIMESTAMP,v1=SIGNATUREformat with timestamp tolerance - GitHub —
sha256=SIGNATUREorsha1=SIGNATUREformat - Slack —
v0=SIGNATUREwithv0:timestamp:bodysigning scheme
Uses timing-safe comparison to prevent timing attacks.
webhook_generate_payload
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.
webhook_debug
Analyze a webhook request end-to-end:
- Parse and categorize headers (content-type, signature, timestamp, delivery ID, custom)
- Validate the request body (size, JSON validity, encoding)
- Auto-detect the provider (Stripe, GitHub, Slack)
- Verify the signature if a secret is provided
- Check timestamp freshness (default 300s threshold)
- Report all issues found
webhook_retry_schedule
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.
Setup
npm install
npm run build
MCP Configuration
Add to your MCP client config:
{
"mcpServers": {
"webhook-tools": {
"command": "node",
"args": ["path/to/mcp-webhook-tools/dist/index.js"]
}
}
}
License
MIT
Installing Webhook Tools
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/rog0x/mcp-webhook-toolsFAQ
Is Webhook Tools MCP free?
Yes, Webhook Tools MCP is free — one-click install via Unyly at no cost.
Does Webhook Tools need an API key?
No, Webhook Tools runs without API keys or environment variables.
Is Webhook Tools hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Webhook Tools in Claude Desktop, Claude Code or Cursor?
Open Webhook Tools on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Compare Webhook Tools with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
