We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/topoteretes/cognee'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import Link from "next/link";
import { DiscordIcon, GithubIcon } from "@/ui/Icons";
interface FooterProps {
children?: React.ReactNode;
}
export default function Footer({ children }: FooterProps) {
return (
<footer className="pt-6 pb-6 flex flex-row items-center justify-between">
<div>
{children}
</div>
<div className="flex flex-row gap-4">
<Link target="_blank" href="https://github.com/topoteretes/cognee">
<GithubIcon color="black" />
</Link>
<Link target="_blank" href="https://discord.gg/m63hxKsp4p">
<DiscordIcon color="black" />
</Link>
</div>
</footer>
);
}