MCP serverAvailable tools
Read prices
List product price overrides for one customer or business location. subjectId is the customerId from get_contacts or locationId from get_configuration.
MCP tool
get_price_overridesPurpose
List product price overrides for a customer or business location.
- Use when
- You need effective customer- or location-specific pricing.
- Do not use when
- You need to change a price override.
- Required permissions
- Side effects
- None
- Idempotency
- Idempotent
Input schema
JSON Schema{ "type": "object", "properties": { "input": { "type": "object", "properties": { "scope": { "type": "string", "enum": [ "customer", "location" ] }, "subjectId": { "type": "string" }, "cursor": { "type": "string" }, "limit": { "type": "integer", "minimum": 1, "maximum": 100 } }, "required": [ "scope", "subjectId" ], "additionalProperties": false } }, "required": [ "input" ], "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false}Output schema
JSON Schema{ "type": "object", "properties": { "data": { "anyOf": [ { "type": "object", "properties": { "prices": { "type": "array", "items": { "type": "object", "properties": { "productId": { "$ref": "#/definitions/__schema0" }, "description": { "$ref": "#/definitions/__schema1" }, "defaultPrice": { "$ref": "#/definitions/__schema2" }, "overridePrice": { "$ref": "#/definitions/__schema3" }, "taxIncluded": { "$ref": "#/definitions/__schema4" }, "taxability": { "$ref": "#/definitions/__schema5" }, "taxRate": { "$ref": "#/definitions/__schema6" } }, "required": [ "productId", "description", "defaultPrice", "overridePrice", "taxIncluded" ], "additionalProperties": false } }, "nextCursor": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "hasMore": { "type": "boolean" } }, "required": [ "prices", "nextCursor", "hasMore" ], "additionalProperties": false }, { "type": "object", "properties": { "prices": { "type": "array", "items": { "type": "object", "properties": { "productId": { "$ref": "#/definitions/__schema0" }, "description": { "$ref": "#/definitions/__schema1" }, "defaultPrice": { "$ref": "#/definitions/__schema2" }, "overridePrice": { "$ref": "#/definitions/__schema3" }, "taxIncluded": { "$ref": "#/definitions/__schema4" }, "taxability": { "$ref": "#/definitions/__schema5" }, "taxRate": { "$ref": "#/definitions/__schema6" } }, "required": [ "productId", "description", "defaultPrice", "overridePrice", "taxIncluded" ], "additionalProperties": false } }, "nextCursor": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "hasMore": { "type": "boolean" } }, "required": [ "prices", "nextCursor", "hasMore" ], "additionalProperties": false } ] }, "error": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "code": { "type": "string", "enum": [ "validation_error", "unauthenticated", "forbidden", "not_found", "method_not_allowed", "conflict", "idempotency_conflict", "operation_in_progress", "recovery_required", "rate_limited", "provider_unavailable", "internal" ] }, "message": { "type": "string" }, "details": { "type": "object", "properties": { "issues": { "type": "array", "items": { "type": "object", "properties": { "path": { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "number" } ] } }, "message": { "type": "string" }, "code": { "type": "string" } }, "required": [ "path", "message" ], "additionalProperties": false } }, "retryable": { "type": "boolean" }, "retryAfterSeconds": { "type": "integer", "exclusiveMinimum": 0, "maximum": 9007199254740991 } }, "additionalProperties": false } }, "required": [ "code", "message" ], "additionalProperties": false } }, "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "__schema0": { "type": "string", "minLength": 1 }, "__schema1": { "type": "string" }, "__schema2": { "type": "number" }, "__schema3": { "type": "number" }, "__schema4": { "type": "boolean" }, "__schema5": { "type": "string" }, "__schema6": { "type": "number" } }, "oneOf": [ { "required": [ "data" ] }, { "required": [ "error" ] } ]}