ShipHero MCP Server

create_webhook

Set up webhooks to receive real-time notifications for specific events by defining the event type and target URL, enabling automated responses through the ShipHero MCP Server.

Input Schema

NameRequiredDescriptionDefault
descriptionNoOptional description for this webhook
event_typeYesThe event type to subscribe to (e.g., 'order.created')
target_urlYesThe URL to send webhook events to

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Optional description for this webhook", "type": "string" }, "event_type": { "description": "The event type to subscribe to (e.g., 'order.created')", "type": "string" }, "target_url": { "description": "The URL to send webhook events to", "format": "uri", "type": "string" } }, "required": [ "event_type", "target_url" ], "type": "object" }
ID: 86hw9j6m2j