New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@undisk-mcp/webhook-client

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@undisk-mcp/webhook-client

Webhook signature verification SDK for Undisk MCP — verify HMAC-SHA256 signed webhook payloads

latest
npmnpm
Version
0.54.1
Version published
Maintainers
1
Created
Source

@undisk-mcp/webhook-client

Verify HMAC-SHA256 signed webhook payloads from Undisk MCP workspaces. Analogous to Stripe's constructEvent.

Installation

npm install @undisk-mcp/webhook-client

Usage

import { verifyWebhookSignature, parseWebhookPayload } from "@undisk-mcp/webhook-client";

const isValid = await verifyWebhookSignature(
  body,
  request.headers.get("X-Undisk-Signature")!,
  process.env.WEBHOOK_SECRET!,
);

if (isValid) {
  const event = parseWebhookPayload(body);
  console.log(event.event, event.data);
}

Documentation

See mcp.undisk.app for full documentation.

License

MIT

Keywords

undisk

FAQs

Package last updated on 21 May 2026

Related posts