ShipStation API MCP Server

subscribe_to_webhook

Subscribe to specific ShipStation events (e.g., ORDER_NOTIFY, SHIP_NOTIFY) by providing a target URL and optionally filtering by store ID to receive real-time webhook notifications.

Input Schema

NameRequiredDescriptionDefault
eventYesEvent to subscribe to (e.g., ORDER_NOTIFY, SHIP_NOTIFY)
storeIdNoStore ID to filter events (optional)
targetUrlYesURL to receive webhook notifications

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "event": { "description": "Event to subscribe to (e.g., ORDER_NOTIFY, SHIP_NOTIFY)", "type": "string" }, "storeId": { "description": "Store ID to filter events (optional)", "type": "number" }, "targetUrl": { "description": "URL to receive webhook notifications", "format": "uri", "type": "string" } }, "required": [ "targetUrl", "event" ], "type": "object" }
ID: gf5s1mfe76