list_services
Retrieve a list of Google Cloud Run services within a specified project and region using the MCP Server. Simplify service monitoring and management with accurate, region-specific details.
Instructions
Lists Cloud Run services in a given project and region.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | Google Cloud project ID | |
region | No | Region where the services are located | europe-west1 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"description": "Google Cloud project ID",
"type": "string"
},
"region": {
"default": "europe-west1",
"description": "Region where the services are located",
"type": "string"
}
},
"required": [
"project"
],
"type": "object"
}