MCP Tools Reference: cloudproductregistry.googleapis.com

Tool: get_product_suite

Retrieves details of a specific ProductSuite, which is a high-level grouping of logical products under a common brand (e.g., Google Cloud Platform). This tool should be invoked when you need to fetch information about a specific product suite, using its unique name in the format of productSuites/{product_suite_id}.

The following sample demonstrate how to use curl to invoke the get_product_suite 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": "get_product_suite",
    "arguments": {
      // provide these details according to the tool's MCP specification
    }
  },
  "jsonrpc": "2.0",
  "id": 1
}'
                

Input Schema

Request message for GetProductSuite.

GetProductSuiteRequest

JSON representation
{
  "name": string
}
Fields
name

string

Required. The name of the ProductSuite to retrieve. Format: productSuites/{product_suite}

Output Schema

Represents a unified grouping of products sharing a common brand and market positioning.

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