list-products
Retrieve product details from a specific cluster on Novita MCP Server. Use cluster ID to fetch products, optionally filter by product name for targeted results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clusterId | No | ID of the cluster to list products from. You can use the `list-clusters` tool to get the cluster ID. | |
productName | No | Name of the product to filter by. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clusterId": {
"description": "ID of the cluster to list products from. You can use the `list-clusters` tool to get the cluster ID.",
"type": "string"
},
"productName": {
"description": "Name of the product to filter by.",
"type": "string"
}
},
"type": "object"
}