openwebhook
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@openwebhooklist my recent webhooks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OpenWebhook CLI
Public npm CLI and MCP server for receiving OpenWebhook webhooks in a local app. Requires Node.js 20.9 or later.
Installation
npm install --global openwebhookThis repository does not publish the package automatically. For development:
npm install
npm run build
npm testRelated MCP server: nahook-mcp
Authentication
openwebhook auth owh_live_…The token is stored in
$XDG_CONFIG_HOME/openwebhook/config.json (default
~/.config/openwebhook/config.json). The directory uses mode 0700 and the
file uses 0600. OPENWEBHOOK_TOKEN supplies the token without writing a
file, and OPENWEBHOOK_CONFIG overrides the path.
Local forwarding
openwebhook listen my-endpoint --port 3001The CLI opens the authenticated SSE stream and forwards each webhook only to
127.0.0.1:3001. It keeps method, path, query, and body. It keeps request
headers except hop-by-hop headers, Host, Content-Length, proxy headers, and
Forwarded / X-Forwarded-*; Host and Content-Length are recalculated.
The local destination never comes from the event or the API: the host is fixed
to 127.0.0.1 and the port comes only from --port. Absolute paths,
protocol-relative URLs, backslashes, and newlines are rejected.
MCP server
openwebhook mcpThe server uses JSON-RPC over stdio with @modelcontextprotocol/sdk. It does
not write logs to stdout. It exposes:
list_endpointscreate_endpoint(slug)delete_endpoint(endpoint_id, fromlist_endpoints)watchunwatchwait_for_webhook(optionaltimeout_ms, max 300000)list_recent_webhooks(optionallimit, max 100)
watch keeps an SSE stream and an in-memory FIFO buffer of up to 100 events
per endpoint. unwatch drops that buffer. The process does not persist
payloads.
Example MCP client config:
{
"mcpServers": {
"openwebhook": {
"command": "openwebhook",
"args": ["mcp"],
"env": {
"OPENWEBHOOK_TOKEN": "owh_live_…"
}
}
}
}Configurable API
OPENWEBHOOK_API_URL changes the origin. It must use HTTP(S) and cannot
include credentials. The default is https://openwebhook.co.
The CLI uses this contract:
GET /api/pro/endpointsPOST /api/pro/endpointswith{"slug":"..."}DELETE /api/pro/endpoints/:endpointIdGET /api/events/:slugwithAccept: text/event-stream
Every request includes Authorization: Bearer <token>. Endpoint responses may
be a bare object or wrapped as endpoints / endpoint.
Setup
Claude Desktop (Desktop Extension)
Build the bundle from this package:
npm run package:mcpb.In Claude Desktop open Settings → Extensions → Install from file.
Choose
dist/openwebhook.mcpb.Paste your OpenWebhook API token from https://openwebhook.co/dashboard.
Reload extensions if Claude does not list the OpenWebhook tools yet.
The extension starts the MCP server with OPENWEBHOOK_TOKEN from that field.
You do not need to run openwebhook auth inside Claude Desktop.
CLI
Install the npm package, run openwebhook auth <token>, then openwebhook mcp
or point your MCP client at the openwebhook binary as shown above.
Privacy Policy
OpenWebhook's privacy policy: https://openwebhook.co/privacy.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Inspect webhook health, investigate delivery failures, configure sources, and replay events.
TheSignup MCP server — read and manage signups, participants, webhooks, and analytics.
- webhook.coOAuthco.webhook
Receive, inspect, replay and deliver webhooks — with signature verification and agent triggers.
Webhook capture bins for agents: get a URL, wait for webhooks, set replies, verify signatures.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceWebhook management and debugging. Validate signatures, log events, replay, and analyze webhook traffic.-

nahook-mcpofficial
AlicenseAqualityCmaintenanceThe official MCP server for Nahook. Manage webhook endpoints, inspect deliveries and delivery attempts, retry failed deliveries, and list environments — directly from Claude, Cursor, Cline, or any MCP-compatible client.121MIT- AlicenseAqualityCmaintenanceA Model Context Protocol (MCP) server for managing GitHub webhooks at both organization and repository levels.8MIT
- FlicenseNot gradedqualityDmaintenanceEnables interaction with The Things Industries LoRaWAN platform via MCP tools, supporting application, device, gateway, and webhook management.1-