get_cluster_details
Retrieve detailed information about a specific GKE cluster by providing the GCP project ID, cluster name, and location. Enhances cluster management within the GCP MCP server.
Instructions
Get detailed information about a specific GKE cluster.
Args:
project_id: The ID of the GCP project
cluster_name: The name of the GKE cluster
location: The location (region or zone) of the cluster
Returns:
Detailed information about the specified GKE cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_name | Yes | ||
location | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_name": {
"title": "Cluster Name",
"type": "string"
},
"location": {
"title": "Location",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"cluster_name",
"location"
],
"title": "get_cluster_detailsArguments",
"type": "object"
}