get_node_details
Retrieve comprehensive node details in JSON format from Kubernetes clusters managed by MCP server k8s-pilot. Provide context name and node name as input to fetch specific information.
Instructions
Get detailed information about a specific node.
Args: context_name: The Kubernetes context name node_name: The name of the node to get details for
Returns: JSON string containing detailed information about the node
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
node_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_name": {
"title": "Context Name",
"type": "string"
},
"node_name": {
"title": "Node Name",
"type": "string"
}
},
"required": [
"context_name",
"node_name"
],
"title": "get_node_detailsArguments",
"type": "object"
}