ShipHero MCP Server

list_inventory_movements

Track and manage inventory movements by filtering data based on product ID, warehouse ID, creation date, and pagination. Enhances inventory control and visibility with ShipHero MCP Server.

Input Schema

NameRequiredDescriptionDefault
created_afterNoFilter by creation date (YYYY-MM-DD)
limitNoNumber of results per page
pageNoPage number for pagination
product_idNoFilter by product ID
warehouse_idNoFilter by warehouse ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "created_after": { "description": "Filter by creation date (YYYY-MM-DD)", "type": "string" }, "limit": { "description": "Number of results per page", "type": "number" }, "page": { "description": "Page number for pagination", "type": "number" }, "product_id": { "description": "Filter by product ID", "type": "string" }, "warehouse_id": { "description": "Filter by warehouse ID", "type": "string" } }, "type": "object" }
ID: 86hw9j6m2j