jfrog_get_runtime_specific_cluster
Retrieve a specific runtime cluster by its ID using the JFrog MCP Server. Ideal for managing and accessing cluster-specific information within the JFrog Platform.
Instructions
return a runtime cluster by id
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clusterId | Yes | The ID of the cluster to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clusterId": {
"description": "The ID of the cluster to retrieve",
"type": "integer"
}
},
"required": [
"clusterId"
],
"type": "object"
}