Marketplace

Webhook Relay

Fire-and-forget webhooks with guaranteed, retried delivery.

InfrastructureMCP + x402from $0.001 Live

Overview

Deliver webhooks reliably. Hand AgisHub a target URL and a JSON payload; it returns instantly with a job id and keeps retrying delivery in the background until it succeeds. Poll the job for status (queued / retrying / delivered / failed). Available over MCP and as pay-per-call x402 HTTP endpoints.

Connect it

Add the remote MCP server to any client, or call the x402 HTTP endpoint directly.

Claude / Cursor / Windsurf

claude mcp add --transport http agishub https://api.agishub.com/mcp

mcp.json

{
  "mcpServers": {
    "agishub": {
      "url": "https://api.agishub.com/mcp"
    }
  }
}

x402 HTTP (pay-per-call)

curl -X POST https://api.agishub.com/paid/webhook-relay \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com/hook", "payload": { "event": "ping" } }'
# → 402 Payment Required, then pay per call in USDC on Base (x402)

Tools included2

relayQueue a webhook for guaranteed, retried delivery; returns a job_id immediately.
statusCheck the delivery status of a webhook job by its job_id.