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 { Snippet } from "@common/elements/Snippet";
import { Callout } from "@ui/Callout";
export function LocalDevCallout({
children,
tipText,
command,
...props
}: {
tipText: string;
command?: string;
children?: React.ReactNode;
} & React.HTMLAttributes<HTMLDivElement>) {
const isDev = process.env.NEXT_PUBLIC_ENVIRONMENT === "development";
if (!isDev) {
return null;
}
return (
<Callout variant="localDev" {...props}>
<div className="grow flex-col text-xs">
{tipText}
{command && (
<Snippet
value={command}
monospace
copying="Command"
className="grow"
/>
)}
</div>
{children}
</Callout>
);
}