We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aywengo/kafka-schema-reg-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Simple wrapper for unified test runner
# This replaces the need to run separate environment and test scripts
echo "π Kafka Schema Registry MCP Server - Unified Testing"
echo "===================================================="
echo ""
echo "This script replaces the old workflow:"
echo " β OLD: ./start_multi_registry_environment.sh && ./run_multi_registry_tests.sh"
echo " β
NEW: ./run_all_tests.sh"
echo ""
# Check if user wants quick mode
if [[ "$1" == "--quick" ]] || [[ "$1" == "-q" ]]; then
echo "π Running in QUICK mode..."
exec ./run_all_tests.sh --quick
elif [[ "$1" == "--help" ]] || [[ "$1" == "-h" ]]; then
echo "Usage: $0 [options]"
echo ""
echo "Options:"
echo " --quick, -q Run essential tests only"
echo " --help, -h Show this help"
echo ""
echo "For advanced options, use: ./run_all_tests.sh --help"
exit 0
else
echo "π¬ Running FULL test suite..."
exec ./run_all_tests.sh
fi