ShipHero MCP Server

list_locations

Retrieve a paginated list of warehouse locations by specifying the warehouse ID, page number, and limit for efficient inventory management within the ShipHero MCP Server.

Input Schema

NameRequiredDescriptionDefault
limitNoNumber of results per page
pageNoPage number for pagination
warehouse_idYesThe ID of the warehouse to list locations for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Number of results per page", "type": "number" }, "page": { "description": "Page number for pagination", "type": "number" }, "warehouse_id": { "description": "The ID of the warehouse to list locations for", "type": "string" } }, "required": [ "warehouse_id" ], "type": "object" }
ID: 86hw9j6m2j