get_pods
Retrieve all Kubernetes pods in a specified namespace to monitor and manage containerized applications running in your cluster.
Instructions
Get all pods in the specified namespace
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| namespace | No | default |
Implementation Reference
- kubernetes.py:15-23 (handler)The main handler function for the 'get_pods' tool. It uses kubectl to fetch pods in the specified namespace (default 'default') as JSON and returns the data or an error dictionary.@mcp.tool() async def get_pods(namespace: str = "default") -> dict: """Get all pods in the specified namespace""" try: cmd = ["kubectl", "get", "pods", "-n", namespace, "-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)}"}