Tool: list_product_suites
Lists all available ProductSuites, which are high-level groupings of logical products under a common brand (e.g., Google Cloud Platform). This tool should be invoked when you need to discover or browse through the product suites available in the registry.
The following sample demonstrate how to use curl to invoke the list_product_suites MCP tool.
| Curl Request |
|---|
curl --location 'https://cloudproductregistry.googleapis.com/mcp' \ --header 'content-type: application/json' \ --header 'accept: application/json, text/event-stream' \ --data '{ "method": "tools/call", "params": { "name": "list_product_suites", "arguments": { // provide these details according to the tool's MCP specification } }, "jsonrpc": "2.0", "id": 1 }' |
Input Schema
Request message for ListProductSuites.
ListProductSuitesRequest
| JSON representation |
|---|
{ "pageSize": integer, "pageToken": string } |
| Fields | |
|---|---|
pageSize |
Optional. The maximum number of suites to return. The service may return fewer than this value. If unspecified, at most 100 suites will be returned. The maximum value is 500; values above 500 will be coerced to 500. |
pageToken |
Optional. A page token, received from a previous When paginating, all other parameters provided to |
Output Schema
Response message for ListProductSuites.
ListProductSuitesResponse
| JSON representation |
|---|
{
"productSuites": [
{
object ( |
| Fields | |
|---|---|
productSuites[] |
Matched ProductSuites |
nextPageToken |
A token, which can be sent as |
ProductSuite
| JSON representation |
|---|
{ "name": string, "title": string, "logicalProducts": [ string ], "replaced": boolean, "replacement": string } |
| Fields | |
|---|---|
name |
Identifier. The resource name of the ProductSuite. Format: productSuites/{product_suite} |
title |
Title of the ProductSuite. |
logicalProducts[] |
Output only. LogicalProducts under this suite. Format: logicalProducts/{logical_product} |
replaced |
Output only. Indicates whether the product suite has been replaced. If |
replacement |
Output only. The resource name of the Logical Entity that the product suite is replaced by. This field is only populated when this product suite is replaced by some other type. Eg: logicalProducts/{logical_product}, logicalProducts/{logical_product}/variants/{variant}, etc. |
Tool Annotations
Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ❌