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
verify.sh•251 B
#!/usr/bin/env bash
# Wait for pod to be running with kubectl wait
if kubectl wait --for=condition=Ready pod/web-server -n create-pod-test --timeout=120s; then
exit 0
else
# If we get here, pod didn't reach Running state in time
exit 1
fi