We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AlwaysSany/health-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
migrate.sh•217 B
#!/bin/bash
set -e
if [ -z "$1" ]; then
echo "Usage: $0 <migration_message>"
exit 1
fi
echo "Creating new migration: $1"
uv run alembic revision --autogenerate -m "$1"
echo "Migration created successfully!"