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
import { ProgressBar } from "@ui/ProgressBar";
import { ReferralState } from "generatedApi";
interface ReferralProgressProps {
referralState: ReferralState;
}
export function ReferralProgress({ referralState }: ReferralProgressProps) {
const referralsCount = referralState.referrals.length;
const referralsComplete = referralsCount >= 5;
return (
<>
{!referralsComplete ? (
<>
<ProgressBar
fraction={referralsCount / 5}
ariaLabel="Referral progress"
variant="solid"
className="w-full"
/>
<span className="text-sm font-medium whitespace-nowrap">
{referralsCount}/5 referral boosts applied
</span>
</>
) : (
<p className="max-w-[24ch] text-right text-sm font-medium text-balance xl:max-w-none">
🎉 Congrats, your app limits have been boosted 5 times!
</p>
)}
</>
);
}