MCP Tools Reference: cloudproductregistry.googleapis.com

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

integer

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

string

Optional. A page token, received from a previous ListProductSuites call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListProductSuites must match the call that provided the page token.

Output Schema

Response message for ListProductSuites.

ListProductSuitesResponse

JSON representation
{
  "productSuites": [
    {
      object (ProductSuite)
    }
  ],
  "nextPageToken": string
}
Fields
productSuites[]

object (ProductSuite)

Matched ProductSuites

nextPageToken

string

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

ProductSuite

JSON representation
{
  "name": string,
  "title": string,
  "logicalProducts": [
    string
  ],
  "replaced": boolean,
  "replacement": string
}
Fields
name

string

Identifier. The resource name of the ProductSuite. Format: productSuites/{product_suite}

title

string

Title of the ProductSuite.

logicalProducts[]

string

Output only. LogicalProducts under this suite. Format: logicalProducts/{logical_product}

replaced

boolean

Output only. Indicates whether the product suite has been replaced. If false, the product suite is active. If true, the product suite has been replaced by another type, and the replacement field contains the resource name of that replacement.

replacement

string

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: ❌