Tools Overview: container.googleapis.com

Get MCP tool specifications

To get the MCP tool specifications for all tools in an MCP server, use the tools/list method. The following example demonstrates how to use curl to list all tools and their specifications currently available within the MCP server.

Curl Request
                    
curl --location 'https://container.googleapis.com/mcp' \
--header 'content-type: application/json' \
--header 'accept: application/json, text/event-stream' \
--data '{
    "method": "tools/list",
    "jsonrpc": "2.0",
    "id": 1
}'
                  
MCP Tools
kube_api_resources Retrieves the available API groups and resources from a Kubernetes cluster. This is similar to running kubectl api-resources.
kube_get Gets one or more Kubernetes resources from a cluster. Resources can be filtered by type, name, namespace, and label selectors. Returns the resources in YAML format. This is similar to running kubectl get.
list_clusters Lists GKE clusters in a given project and location. Location can be a region, zone, or '-' for all locations.
get_cluster Gets the details of a specific GKE cluster.
list_operations Lists GKE operations in a given project and location. Location can be a region, zone, or '-' for all locations.
get_operation Gets the details of a specific GKE operation.
list_node_pools Lists the node pools for a specific GKE cluster.
get_node_pool Gets the details of a specific node pool within a GKE cluster.