update-product-price
Modify product pricing across all variants by specifying the product ID and new price through the Shopify Update MCP Server.
Instructions
Update the price of a product by its ID for all variants
Input Schema
Name | Required | Description | Default |
---|---|---|---|
price | Yes | Price of the product to update to | |
productId | Yes | ID of the product to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"price": {
"description": "Price of the product to update to",
"type": "string"
},
"productId": {
"description": "ID of the product to update",
"type": "string"
}
},
"required": [
"productId",
"price"
],
"type": "object"
}