Create Product
meta_create_productAdd a product to a catalog with required details like name, price, and availability. Returns the created product ID.
Instructions
Adds a product to a catalog.
Args:
catalog_id (string): The catalog ID
name (string): Product name
description (string): Product description
price (number): Price in cents
currency (string): Currency code (default "USD")
availability (enum): "in stock", "out of stock", "preorder", "available for order"
image_url (string): Product image URL
url (string): Product page URL
brand (string, optional): Brand name
category (string, optional): Product category
retailer_id (string): Your unique product ID
Returns the created product ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| catalog_id | Yes | Product catalog ID | |
| name | Yes | Product name | |
| description | Yes | Product description | |
| price | Yes | Price in cents | |
| currency | No | Currency code (default USD) | USD |
| availability | Yes | Product availability | |
| image_url | Yes | Product image URL | |
| url | Yes | Product page URL | |
| brand | No | Brand name | |
| category | No | Product category | |
| retailer_id | Yes | Your unique product ID | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |