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 classNames from "classnames";
import Link from "next/link";
import { ReactNode } from "react";
type BreadcrumbLinkProps = {
children: ReactNode;
href: string;
className?: string;
};
export function BreadcrumbLink({
children,
href,
className,
}: BreadcrumbLinkProps) {
return (
<Link
href={href}
passHref
className={classNames("py-2 text-sm text-content-primary", className)}
>
{children}
</Link>
);
}