get_deployments
Retrieve all Kubernetes deployments in a specified namespace to monitor and manage application deployments within your cluster.
Instructions
Get all deployments in the specified namespace
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| namespace | No | default |
Implementation Reference
- kubernetes.py:76-84 (handler)The handler function for the 'get_deployments' tool. It uses kubectl to fetch deployments in the specified namespace as JSON. The @mcp.tool() decorator registers it with the FastMCP server.@mcp.tool() async def get_deployments(namespace: str = "default") -> dict: """Get all deployments in the specified namespace""" try: cmd = ["kubectl", "get", "deployments", "-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 nodes: {str(e)}"}