{"tools":[{"name":"shop","description":"Search for products across all connected stores. Returns products with all available options (sizes, colors, etc.) and variant_ids ready for checkout. Just describe what you're looking for.","schema":{"type":"object","properties":{"query":{"type":"string","description":"What to search for, e.g. 'blue t-shirt', 'snowboard', 'medium hoodie'"}},"required":["query"]},"annotations":{"title":"Search Products","readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false}},{"name":"checkout","description":"Create a checkout link for a product. Use the variant_id from the shop results. Returns a link the user can click to complete purchase.","schema":{"type":"object","properties":{"store":{"type":"string","description":"Store domain from the shop results"},"variant_id":{"type":"string","description":"The variant_id from shop results for the exact size/color the user wants"},"quantity":{"type":"integer","description":"How many to buy","default":1}},"required":["store","variant_id"]},"annotations":{"title":"Create Checkout Link","readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false}}]}