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 { PlanResponse } from "generatedApi";
import { PlanCard } from "./PlanCard";
export function SelfServePlan({
currentPlan,
percentOff,
plan,
action,
}: {
currentPlan?: string;
plan: PlanResponse;
percentOff?: number;
action?: React.ReactNode;
}) {
return (
<PlanCard
selected={currentPlan === plan.id}
plan={plan}
saleHeader={
plan.seatPrice ? (
percentOff ? (
<>
<span className="mr-1 line-through">${plan.seatPrice}</span>$
{Number((plan.seatPrice * (1 - percentOff / 100)).toFixed(2))}
</>
) : (
`$${plan.seatPrice} per member, per month`
)
) : (
"Usage-based pricing"
)
}
action={action}
/>
);
}