switch_shop
Switch active shops within the Printify MCP Server by providing the target shop ID, enabling seamless management of print-on-demand operations across multiple accounts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shopId | Yes | The ID of the shop to switch to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shopId": {
"description": "The ID of the shop to switch to",
"type": "string"
}
},
"required": [
"shopId"
],
"type": "object"
}