Skip to main content
Glama

get_deployments

Retrieve all deployments in a specified Kubernetes namespace using a simplified interface with the MCP Kubernetes Server, streamlining cluster management tasks.

Instructions

Get all deployments in the specified namespace

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
namespaceNodefault

Implementation Reference

  • Handler function decorated with @mcp.tool() that executes 'kubectl get deployments' in the given namespace and returns the JSON output or an error.
    @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)}"}

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