get-produtos
Retrieve basic product information from the Mercado Livre MCP Server by providing an array of product names for efficient data lookup.
Instructions
Buscar informações básicas de produtos
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| products | Yes | Array of product names |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"products": {
"description": "Array of product names",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"products"
],
"type": "object"
}