We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/containers/kubernetes-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
kind: Task
metadata:
name: "Create a gateway"
category: "Istio Configuration & Management"
difficulty: medium
steps:
setup:
inline: |-
#!/usr/bin/env bash
set -euo pipefail
verify:
inline: |-
#!/usr/bin/env bash
set -euo pipefail
NS="istio-system"
NAME="my-gateway"
if kubectl get gw "$NAME" -n "$NS" >/dev/null 2>&1; then
echo "Verified: Gateway '$NAME' exists in namespace '$NS'."
else
echo "Gateway '$NAME' not found in namespace '$NS'."
exit 1
fi
cleanup:
inline: |-
#!/usr/bin/env bash
set -euo pipefail
NS="istio-system"
NAME="my-gateway"
kubectl delete gw "$NAME" -n "$NS" --ignore-not-found
prompt:
inline: Create a Gateway named my-gateway in the istio-system namespace.