calculate-print-job-cost
Determine the cost of a print job based on product ID and quantity without initiating the job, using the Lulu Print MCP Server integration for precise estimates.
Instructions
Calculate the cost of a print job without creating it
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product_id | Yes | Lulu product ID | |
quantity | Yes | Number of copies |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"product_id": {
"description": "Lulu product ID",
"type": "string"
},
"quantity": {
"description": "Number of copies",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"product_id",
"quantity"
],
"type": "object"
}