Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’¬ Communication
  3. Webhook.co
W
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:15:02 PM

Webhook.co

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Receive, inspect, replay and deliver webhooks β€” with signature verification and agent triggers.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "webhook-co": {
      "command": "npx",
      "args": [
        "-y",
        "@webhook-co/cli"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’¬ More in Communication

Documentation Overview

webhook.co

webhook.co

A free, permanent, signed webhook URL you can inspect and replay to localhost β€” from the CLI, API, dashboard, or MCP.

License: Apache-2.0 CLI on npm CI Docs

webhook.co captures the webhooks other services send you, so you can see exactly what arrived, check the signature, and replay it to your local dev server without redeploying. The same operations run from the CLI, the REST API, the web dashboard, and an MCP server.

  • Receive β€” a stable, signed URL on a dedicated apex (https://wbhk.my/<token>). No expiring tunnels.
  • Inspect β€” every request, headers and body, with a clear signature result.
  • Replay to localhost β€” forward any captured event to http://localhost:3000 with one command.
  • Deliver β€” send events on to your own destinations, in order, with retries.

Want to see it work first? Open webhook.co/play β€” send a webhook, watch it land. No signup, nothing to install.

Open source Β· Apache-2.0 Β· private by default.

Try it in 60 seconds

Sign in, create an endpoint, forward its webhooks to your machine, and send it a test request. No install needed β€” this uses npx (Node 22+):

sh
# 1. sign in β€” opens your browser (GitHub or Google) and creates your free account
npx @webhook-co/cli login

# 2. create an endpoint β€” it prints an id and your permanent, signed ingest URL:
npx @webhook-co/cli endpoints create orders
#    id          d7e4f8a1-3b60-4c2e-9f15-0a8c6b2e1d94
#    ingest url  https://wbhk.my/whep_8QmZ4tN1p…

# 3. forward that endpoint's events to your local server (leave this running)
npx @webhook-co/cli listen d7e4f8a1-3b60-4c2e-9f15-0a8c6b2e1d94 --forward http://localhost:3000

# 4. in another terminal, send it a test request β€” or point Stripe, GitHub, Shopify, … at the URL
curl -X POST https://wbhk.my/whep_8QmZ4tN1p… -d '{"hello":"webhook.co"}'

With --forward, each captured event prints one line as it lands on your local server β€” the event id, the target, the status it returned, and how long it took:

text
caught up β€” now tailing live events
forwarded 019f8b88-55f0-7534-9ae9-f9fcfd07758c β†’ http://localhost:3000 Β· 200 Β· 8ms
forwarded 019f8b88-6121-72e7-b640-56ecb2b2ffb2 β†’ http://localhost:3000 Β· 200 Β· 3ms
forwarded 019f8b88-6c40-7bdf-a81f-7290b2752992 β†’ http://localhost:3000 Β· 200 Β· 2ms

Drop --forward and wbhk listen opens a live view of what's arriving instead β€” one row per event, with the provider it came from and whether its signature checked out:

wbhk listen streaming captured webhooks, each row showing the provider and whether its signature verified

--forward targets must be a full loopback URL (http://localhost:3000, http://127.0.0.1:8080/webhooks). Replay a past event with wbhk replay <event-id> --forward http://localhost:3000.

Prefer a permanent install? Pick one:

sh
brew install webhook-co/tap/wbhk           # Homebrew (macOS / Linux)
npm install -g @webhook-co/cli             # npm β€” installs the wbhk command
curl -fsSL https://get.webhook.co | sh     # standalone binary, no Node required

Full walkthrough: docs.webhook.co/quickstart.

What you get

A permanent, signed URL that captures first. Every request is written to durable storage the instant it lands β€” before verification or dedup run β€” so a bad signature, an unknown provider, or a downstream outage only changes what happens next, never whether you have the event. The ingest URL is a sealed credential you can re-read on demand and rotate in place, not a secret shown once.

Verification for 144 providers, built in. One open registry (packages/webhooks-spec) covers Stripe, GitHub, Shopify, Slack, Twilio, Square, PayPal, Discord, Clerk, Supabase, and many more. Every event is sorted into one of four states β€” verified (a cryptographic signature checked), authenticated (source proven by a shared secret, no payload signature), failed (a signature was checked and rejected), or unattempted β€” and a failure names the likely cause instead of stopping at "no signatures found." Signing and verification follow the Standard Webhooks spec, for both receive and send.

That registry is also a standalone library, usable without an account β€” or this product:

Terminal
npm install @webhook-co/webhooks-spec
server.ts
import { getAdapterForScheme } from "@webhook-co/webhooks-spec";

const adapter = getAdapterForScheme("github"); // name the provider β€” it's your endpoint
const result = await adapter.verify({ rawBody, headers, secrets: [process.env.WEBHOOK_SECRET] });
// result.ok, or result.reason.code β€” WRONG_SECRET vs RAW_BODY_MODIFIED vs TIMESTAMP_TOO_OLD

See packages/webhooks-spec for the full API. A provider it doesn't cover yet is usually one config row β€” that's a good first issue.

Reliable outbound delivery. Forward captured events to your own destinations with strict FIFO ordering (one Durable Object per destination), at-least-once delivery, retries on exponential backoff, and dead-lettering once a destination exhausts its retries. Deliveries carry a fresh signature only for events webhook.co verified or authenticated; anything it couldn't vouch for is relayed unsigned. Optional per-endpoint deduplication collapses repeats by Standard-Webhooks id, provider event id, a content hash, or JSON fields you choose.

Replay on demand. Re-send any captured event still within your retention window β€” to localhost or to a registered destination β€” to fix a handler or recover from an outage, without asking the provider to send it again.

Private by default, with the controls built in. Nothing is public unless you make it so. Tenant isolation is enforced by Postgres row-level security; secrets are envelope-encrypted under a KMS; traffic is encrypted in transit and at rest; and privileged actions land in an append-only, hash-chained audit log with a verifier (wbhk audit verify) that proves the chain hasn't been altered.

One capability contract, four surfaces. Every capability is defined once and bound identically to the CLI, the REST API, the web dashboard, and the MCP server. A parity gate fails the build if a surface forgets one β€” so the surfaces don't drift.

Built for agents

An agent can act on inbound webhooks without you writing the plumbing. The MCP server at mcp.webhook.co is a first-class surface (remote HTTP on Cloudflare Workers, OAuth-authorized), and triggers.wait is the primitive: an agent registers a trigger on an endpoint and drains new events since its last cursor β€” at-least-once, in capture order per endpoint, held durably while the agent is offline, with the verified payload inline (up to 64 KiB). It is a short poll the agent drives, not a push: MCP has no native inbound trigger, so nothing calls your agent β€” it calls us, and the durable log means an offline agent misses nothing.

Egress-configuring capabilities (registering replay destinations and subscriptions) are deliberately kept off MCP, and localhost replay stays CLI-only β€” a confused-deputy and SSRF precaution, not a missing feature.

SDKs and CLI

Three official client SDKs, generated from the same OpenAPI contract as the API, plus the wbhk CLI. Each SDK ships bearer auth, bounded retries with jitter, cursor pagination, idempotency, and secret redaction.

LanguageInstallImport
TypeScriptnpm install @webhook-co/sdkimport { WebhookClient } from "@webhook-co/sdk"
Pythonpip install webhook-cofrom webhook_co import WebhookClient
Gogo get github.com/webhook-co/webhook-goimport webhook "github.com/webhook-co/webhook-go"
CLIbrew install webhook-co/tap/wbhkthe wbhk command

The TypeScript SDK runs anywhere fetch does (Node 18+, browsers, Deno, Bun, Workers). The Python SDK needs Python 3.10+. The Go SDK needs Go 1.22+ and has zero third-party dependencies β€” standard library only β€” and lives in its own repository, webhook-co/webhook-go.

The REST API lives at https://api.webhook.co/v1, authenticated with a whk_ bearer key, and is described by a machine-readable OpenAPI 3.1 document at api.webhook.co/openapi.json β€” the one source that also generates the SDKs and the docs.

Distribution is independently verifiable: npm packages are published with provenance (npm audit signatures), and the standalone CLI binaries carry sigstore-signed SLSA build provenance (gh attestation verify wbhk-<os>-<arch> --repo webhook-co/webhook).

Pricing

webhook.co is free to start: a permanent signed URL, inspect, and replay, with 5,000 events to spend once β€” a real trial allowance that never resets. Paid plans (Pro, Scale, Enterprise) price on a single dimension β€” events β€” with a soft cap that pauses capture rather than surprising you with a bill. The whole receive β†’ verify β†’ deliver β†’ replay pipeline, outbound delivery included, is on every plan; plans differ by event volume and retention window. Full numbers: webhook.co/pricing.

How it's built

webhook.co is a Turborepo + pnpm-workspaces monorepo. The core engine is TypeScript on Cloudflare Workers; ordering and isolation come from one Durable Object per destination, with Durable Object Alarms driving retry scheduling; metadata and dedup live in Neon Postgres via Hyperdrive; and payloads are stored content-addressed in R2. Ingestion runs on a separate registrable apex, wbhk.my β€” cookieless, no CORS, path-token routed, with a 404 for unknown tokens β€” deliberately isolated from the primary application domain.

Code
apps/
  api/         REST API                          (api.webhook.co)
  engine/      capture / verify / deliver β€” Workers + Durable Objects
  web/         dashboard                         (app.webhook.co)
  www/         marketing site                    (webhook.co)
  docs/        documentation                     (docs.webhook.co)
  mcp/         MCP server                        (mcp.webhook.co)
  auth/        identity / OAuth issuer           (auth.webhook.co)
  play/        no-signup playground              (webhook.co/play)
  get/         CLI install shim                  (get.webhook.co)
  telemetry/   anonymous, opt-out CLI telemetry
packages/
  cli/            the wbhk CLI + listen / replay-to-localhost
  webhooks-spec/  Standard Webhooks signing + the 144-provider registry
  contract/       the capability contract + cross-surface parity gate
  sdk-ts/         the TypeScript SDK (@webhook-co/sdk)
  shared/         shared types, the plan catalog, utilities
  ui/             shared UI components
  portal-sdk/     embeddable portal SDK
ee/            proprietary, license-fenced (excluded from self-host builds)
infra/         infrastructure as code
sdks/python/   the Python SDK (webhook-co)

AGENTS.md is the constitution β€” the shared context, conventions, and non-negotiables every contributor and coding agent follows.

Open core

The core β€” the delivery/ingestion engine, the CLI and replay client, the MCP server, the SDKs, and the Standard-Webhooks signing implementation β€” is Apache-2.0. Proprietary features live behind the ee/ fence and are excluded from self-host builds; open-core code never imports from ee/. Open source exists here for transparency and trust; an open, shared webhook interop standard β€” not a restrictive license β€” is the point.

If this is useful to you, a ⭐ helps. It is the signal other developers use to decide whether a webhook tool is worth their afternoon, and it is the only one we can't write ourselves.

Contributing

Setup is pnpm install (Node 24, pinned in .nvmrc; pnpm via corepack enable). The everyday loop:

sh
pnpm lint          # ESLint (incl. security rules) + repo guards
pnpm format        # Prettier
pnpm typecheck     # tsc across the workspace
pnpm test          # Vitest
pnpm build         # turbo build

Changes land via pull request to main behind required CI checks and a review. See CONTRIBUTING.md for the full setup, the check gate, and the merge model. Issues and discussions are welcome, and everyone taking part is held to the Code of Conduct.

Looking for somewhere to start? The good first issue label is where we park the small, self-contained ones.

Security

Please report vulnerabilities privately β€” see SECURITY.md. Don't open a public issue for a security report.

License

Apache-2.0 for the open core. See NOTICE for attribution and the ee/ directory for the separately-licensed proprietary components.


Docs: docs.webhook.co Β· Playground: webhook.co/play Β· Changelog: docs.webhook.co/changelog

Related MCP Servers

View all in Communication View all alternatives
  • Slack Mcp Server logoSlack Mcp Server

    The most powerful MCP server for Slack Workspaces.

    πŸ’¬ Communication1 views
    Compare vs Slack Mcp Server β†’
  • Mcp logoMcp

    Email validation and SMTP verification for Claude Desktop, Cursor, and Claude Code.

    πŸ’¬ Communication0 views
    Compare vs Mcp β†’
  • W
    Webhook Ai Mcp

    Webhook Ai tools for AI agents. Capabilities: validate webhook signature, log webhook event, replay

    πŸ’¬ Communication0 views
    Compare vs Webhook Ai Mcp β†’
  • Mcp logoMcp

    Email for AI agents: inboxes, send/reply/forward, search, threads, webhooks β€” 21 SentFromAI tools.

    πŸ’¬ Communication0 views
    Compare vs Mcp β†’

Frequently Asked Questions about Webhook.co

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "webhook-co": { "command": "npx", "args": ["-y", "webhook.co"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewWebhook.co AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/webhook-co?style=directory)](https://allmcps.com/mcp/webhook-co)
HTML Embed
<a href="https://allmcps.com/mcp/webhook-co"><img src="https://allmcps.com/api/badge/webhook-co?style=directory" alt="Webhook.co on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’¬Communication
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit5d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 5, 2026
40Quality signal: Fair Β· 40/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’¬ Communication β†’Best MCP servers for Slack & Communication β†’Alternatives to Webhook.co β†’Install in Claude DesktopInstall in CursorInstall in VS Code