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•314 B
#!/usr/bin/env bash
# Verify that helm list was called and returns the test release
# The agent should have discovered the test-nginx release
if helm list -n helm-list-test | grep -q "test-nginx"; then
exit 0
else
echo "Verification failed: test-nginx release not found in helm list output"
exit 1
fi