get_identity_details
Retrieve detailed information about a specific identity in a Kubernetes cluster, enabling precise security analysis and management through the RAD Security MCP server.
Instructions
Get detailed information about a specific identity in a Kubernetes cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identity_id | Yes | Identity ID to get details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"identity_id": {
"description": "Identity ID to get details for",
"type": "string"
}
},
"required": [
"identity_id"
],
"type": "object"
}