Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

AnyHook

net.anyhook/anyhook

A webhook inbox for agents: one call returns a live URL. Mock, verify, inspect and replay.

Uptime
100.0%
1 direct probes · 30d
Response
1724ms
last probe
Tools
11
callable
Resources
0
readable
Prompts
0
available

Tools · 11

anyhook_mock

Generate a webhook request with a valid signature for Stripe, GitHub, or Slack. If targetUrl is provided, the request is POSTed there and the response is returned.

anyhook_verify

Verify a webhook signature against a secret. Supports 20 providers including stripe, github, shopify, slack, line, discord, linear, vercel, paddle, hubspot, and paypal.

anyhook_providers

List webhook providers AnyHook can mock, along with the event types available for each.

anyhook_apps_list

List apps in your AnyHook account with inbound URLs, sources, and destination URLs. Check isActive: an inactive app's inbound URL answers setup handshakes but acknowledges and discards event POSTs (20…

anyhook_inbox

Every AnyHook app is also an email inbox: mail sent to {user}.{app}@anyhook.net becomes an event (type email.received) you can read with anyhook_events. Returns the address and webhook URL for one of …

anyhook_apps_create

Create a new app with a name, provider source, and (optionally) destinations. Returns the inbound URL. The app is active immediately. Created WITHOUT destinations it still receives and LOGS every even…

anyhook_replay

Re-send a stored event to its destinations. Replay does not consume monthly event quota, but the destination does run its handler again: a receiver that is not idempotent will process the event twice …

anyhook_undelivered

Show events for the given app that have not successfully reached any destination (failed or still retrying).

anyhook_replay_failed

Re-send every failed event for the given app slug. Useful after fixing a downstream bug to recover queued work.

anyhook_events

List webhook events, most recent first: id, app, type, status, attempt, destination status code, latency, timestamp. Summaries only, no request headers or body — call anyhook_inspect with an id from h…

anyhook_inspect

Full detail for one event by id, including the inbound headers and body that anyhook_events omits, plus the destination's response. Payloads can be large and often contain personal data, so fetch one …

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "anyhook": {
      "url": "https://anyhook.net/mcp",
      "transport": "streamable-http"
    }
  }
}