Network
Generate a unique webhook capture URL, inspect incoming requests, validate signatures, and replay payloads to a target endpoint
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/webhook-debugger-relay' \
-H 'Content-Type: application/json' \
-d '{"relayTargetUrl":"https://api.example.com/webhooks/stripe","signatureSecret":"whsec_test_123","signatureHeader":"stripe-signature","autoReplay":false,"methodFilter":"POST","bodyMustContain":"\"type\":\"invoice.paid\"","storedRequestLimit":50}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/webhook-debugger-relay| Name | Type | Required | Description |
|---|---|---|---|
| relayTargetUrl | text | No | — |
| signatureSecret | text | No | — |
| signatureHeader | text | No | — |
| autoReplay | checkbox | No | — |
| methodFilter | select | No | — |
| bodyMustContain |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-webhook-debugger-relay": {
"name": "webhook-debugger-relay",
"description": "Generate a unique webhook capture URL, inspect incoming requests, validate signatures, and replay payloads to a target endpoint",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=webhook-debugger-relay",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "webhook-debugger-relay",
"arguments": {
"relayTargetUrl": "https://api.example.com/webhooks/stripe",
"signatureSecret": "whsec_test_123",
"signatureHeader": "stripe-signature",
"autoReplay": false,
"methodFilter": "POST",
"bodyMustContain": "\"type\":\"invoice.paid\"",
"storedRequestLimit": 50
}
}
}Questions or issues? Contact [email protected]
| text |
| No |
| — |
| storedRequestLimit | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}