Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

AnyHook (moved)

NPM · ANYHOOK-MCP · SCANNED AUG 3

Moved to net.anyhook/anyhook. Webhook relay for agents: keyless quickstart, replay, mock.

Available components

+21 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability64
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1163 tokens (~96/item across 12 items; 12 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage93
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 80% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · anyhook-mcp

# add to Claude Code
claude mcp add gba3124-mcp -- npx -y anyhook-mcp
# add to Codex CLI
codex mcp add gba3124-mcp -- npx -y anyhook-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "gba3124-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "anyhook-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add gba3124-mcp --command npx --arg -y --arg anyhook-mcp
# ~/.hermes/config.yaml
mcp_servers:
  gba3124-mcp:
    command: "npx"
    args: ["-y", "anyhook-mcp"]
// mcp.json
{
  "mcpServers": {
    "gba3124-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "anyhook-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +46
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Tool coverage: 100 → unverified functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Schema quality: unverified → good functional
    • First check of Schema quality: unverified functional
    • Licence: Apache-2.0 functional
  • 1 Aug 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 45

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 95 packages

95 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 12 exposed · ~1,163 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
anyhook_apps_create ~121

Create a new app with a name, provider source, and (optionally) destinations. Returns the inbound URL.

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.
destinationsarrayDestination URLs that should receive forwarded events.
namestringyesHuman-readable app name.
sourcestringyesProvider name (stripe, github, shopify, ...). Used for signature auto-detection.

No output schema declared.

No examples provided.

anyhook_apps_list ~65

List apps in your AnyHook account with inbound URLs, sources, and destination URLs.

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.

No output schema declared.

No examples provided.

anyhook_events ~155

List webhook events (most recent first). Uses your AnyHook account when connected (via ANYHOOK_API_KEY or anyhook_quickstart), otherwise the local in-memory store.

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.
appSlugstringFilter to a specific app slug (account mode).
limitinteger
sourcestringFilter by provider source (local mode).
statusstringFilter by status. Account mode: queued|success|retrying|failed. Local mode: received|forwarded|failed|retrying.

No output schema declared.

No examples provided.

anyhook_inspect ~82

Full detail for one event: source, type, status, delivery summary. Account or local store.

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.
idstringyesEvent ID returned by anyhook_events.

No output schema declared.

No examples provided.

anyhook_mock ~134

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.

NameTypeReqDescription
dataobjectOptional fields to deep-merge into the fixture.
eventstringyesEvent name (e.g. 'payment_intent.succeeded' for Stripe).
providerstringyesWebhook provider to simulate.
secretstringSigning secret. Falls back to a deterministic default per provider.
targetUrlstringIf set, POST the generated request to this URL and return the response.

No output schema declared.

No examples provided.

anyhook_providers ~27

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

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

anyhook_quickstart ~105

Zero-config bootstrap: creates a free ephemeral relay endpoint + API key with no signup. Returns inbound_url (receives webhooks immediately), api_key, and claim_url. This MCP session auto-connects to the new account; remote tools work right after. Endpoint expires in 7 days unless claimed.

NameTypeReqDescription
destination_urlstringOptional forwarding destination for the new endpoint.
sourcestringOptional provider hint (stripe, github, shopify, ...).

No output schema declared.

No examples provided.

anyhook_replay ~90

Re-send a stored event to its destinations. Replay does NOT consume monthly event quota — safe to call repeatedly while debugging.

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.
idstringyesEvent ID to replay. Replay does not consume event quota.

No output schema declared.

No examples provided.

anyhook_replay_failed ~88

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

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.
appSlugstringyesBulk-replay every failed event for this app.

No output schema declared.

No examples provided.

anyhook_simulate ~81

Generate a mocked webhook AND insert it into the local memory store, so list/inspect flows can be exercised without a real provider. Not available in remote mode — use anyhook_mock + your real inbound URL there.

NameTypeReqDescription
dataobject
eventstringyes
providerstringyes
secretstring

No output schema declared.

No examples provided.

anyhook_undelivered ~85

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

NameTypeReqDescription
api_keystringAPI key (ahk_live_...) from anyhook_quickstart. Only needed over HTTP when no Authorization header is set; ignored over stdio.
appSlugstringyes
limitinteger

No output schema declared.

No examples provided.

anyhook_verify ~130

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

NameTypeReqDescription
bodystringyesRaw request body.
headersobjectyesRequest headers as a flat object.
providerstringyesProvider name (e.g. 'stripe', 'github', 'slack', 'generic').
requestUrlstringOriginal request URL (required for Twilio/HubSpot). Defaults to a placeholder.
secretstringyesSigning secret to verify against.

No output schema declared.

No examples provided.