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
"use client";
import { useTheme } from "next-themes";
import Image from "next/image";
import { useState, useEffect } from "react";
type LogoProps = {
width?: number;
height?: number;
};
export function ConvexLogo({ width, height }: LogoProps) {
const { resolvedTheme: currentTheme } = useTheme();
const prefersDark = currentTheme === "dark";
const [mounted, setMounted] = useState(false);
useEffect(() => setMounted(true), []);
if (!mounted) return null;
return (
<Image
src={prefersDark ? "/convex-dark.svg" : "/convex-light.svg"}
height={height ?? 76}
width={width ?? 228}
alt="Convex Logo"
/>
);
}