We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Evan-Kim2028/spice-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env bash
# Wrapper to provide a consistent `bat` command across distros.
# On Debian/Ubuntu the binary may be `batcat`.
set -euo pipefail
if command -v bat >/dev/null 2>&1; then
exec bat "$@"
elif command -v batcat >/dev/null 2>&1; then
exec batcat "$@"
else
echo "bat (or batcat) is not installed. Suggested installs:" >&2
echo " macOS: brew install bat" >&2
echo " Ubuntu: sudo apt install bat && sudo update-alternatives --set bat \$(command -v batcat) || echo 'Use batcat instead'" >&2
echo " Arch: sudo pacman -S bat" >&2
echo " Fedora: sudo dnf install bat" >&2
exit 127
fi