ShipStation API MCP Server

list_products

Retrieve and filter product data from ShipStation with flexible query options, including name, SKU, category, pagination, and sorting. Manage product listings efficiently.

Input Schema

NameRequiredDescriptionDefault
nameNoFilter by product name
pageNoPage number
pageSizeNoNumber of products per page (max 500)
productCategoryIdNoFilter by product category ID
showInactiveNoInclude inactive products
skuNoFilter by SKU
sortByNoSort products by a specific field
sortDirNoSort direction

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "Filter by product name", "type": "string" }, "page": { "description": "Page number", "type": "number" }, "pageSize": { "description": "Number of products per page (max 500)", "type": "number" }, "productCategoryId": { "description": "Filter by product category ID", "type": "number" }, "showInactive": { "description": "Include inactive products", "type": "boolean" }, "sku": { "description": "Filter by SKU", "type": "string" }, "sortBy": { "description": "Sort products by a specific field", "type": "string" }, "sortDir": { "description": "Sort direction", "enum": [ "ASC", "DESC" ], "type": "string" } }, "type": "object" }
ID: gf5s1mfe76