#!/bin/bash
if [[ "${VERCEL_ENV}" == "production" ]] ; then
# Proceed with the build
echo "✅ - Build can proceed on production branch"
exit 1;
elif [[ "${VERCEL_GIT_COMMIT_REF}" == "release" ]] ; then
# Proceed with the build
echo "✅ - Build can proceed on release branch"
exit 1;
else
# Only build if the dashboard, dashboard-common, or the design system has changed.
git diff HEAD^ HEAD --quiet . ../dashboard-common ../@convex-dev/design-system && echo "🛑 - Build canceled"
fi
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server