Shopify MCP Server

tag-customer

Tag a shopify customer

Input Schema

NameRequiredDescriptionDefault
customerIdYesCustomer ID to tag
tagsYesTags to add to the customer

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "customerId": { "description": "Customer ID to tag", "type": "string" }, "tags": { "description": "Tags to add to the customer", "items": { "type": "string" }, "type": "array" } }, "required": [ "customerId", "tags" ], "type": "object" }