Hookdeck CLI

2.1.1 · active · verified Wed Apr 22

The Hookdeck CLI, currently at stable version 2.1.1, provides a command-line interface for interacting with the Hookdeck platform. It enables developers to manage webhooks locally, forward them to the Hookdeck service, and control various aspects of their Hookdeck account, including connections, issues, and metrics. The project maintains an active release cadence with regular patch and minor updates, often accompanied by beta pre-releases for early testing. Key differentiators include its ability to securely expose local development environments to webhook traffic via the `hookdeck listen` command, manage webhook connections by name or ID, and integrate with the Event Gateway MCP for advanced scenarios. Recent updates have focused on improving authentication flows, gateway reliability, and security patches.

Common errors

Warnings

Install

Quickstart

Installs the Hookdeck CLI globally, authenticates the user, and sets up local webhook forwarding.

npm install -g hookdeck-cli

# Log in to your Hookdeck account via browser
hookdeck login

# Listen for webhooks on local port 8080, forwarding them via Hookdeck
# This command sets up a temporary connection to expose your local server
hookdeck listen 8080

view raw JSON →