fakestore_add_product
Add new products to a simulated e-commerce store for testing and demonstration purposes. Specify product title, price, description, image URL, and category to create temporary product entries.
Instructions
Add a new product to the store (simulation - does not persist)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Product category | |
description | Yes | Product description | |
image | Yes | Product image URL | |
price | Yes | Product price | |
title | Yes | Product title |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Product category",
"type": "string"
},
"description": {
"description": "Product description",
"type": "string"
},
"image": {
"description": "Product image URL",
"type": "string"
},
"price": {
"description": "Product price",
"type": "number"
},
"title": {
"description": "Product title",
"type": "string"
}
},
"required": [
"title",
"price",
"description",
"image",
"category"
],
"type": "object"
}