Skip to main content
Glama

get_failing_pods

Identify pods with issues in a Kubernetes namespace to diagnose and resolve cluster problems efficiently.

Instructions

Get all pods with issues in the specified namespace

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
namespaceNodefault

Implementation Reference

  • The handler function decorated with @mcp.tool(), implementing the logic to retrieve failing (non-Running phase) pods using kubectl in the specified namespace.
    @mcp.tool() async def get_failing_pods(namespace: str = "default") -> dict: """Get all pods with issues in the specified namespace""" try: cmd = ["kubectl", "get", "pods", "-n", namespace, "--field-selector=status.phase!=Running", "-o", "json"] result = subprocess.run(cmd, capture_output=True, text=True, check=True) return json.loads(result.stdout) except subprocess.CalledProcessError as e: return {"error": f"Failed to get pods: {str(e)}"}

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/abhijeetka/mcp-k8s-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server