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
"use client";
import Link from "next/link";
import Image from "next/image";
import AuthForm from "../AuthForm";
export default function SignUpPage() {
return (
<div className="m-auto w-full max-w-md shadow-xl rounded-xl">
<div className="flex flex-col px-10 py-16 bg-white border-1 rounded-xl border-indigo-600 overflow-hidden">
<Image src="/images/cognee-logo-with-text.png" alt="Cognee logo" width={176} height={46} className="h-12 w-44 self-center mb-16" />
<h1 className="self-center text-xl mb-4">Welcome</h1>
<p className="self-center mb-10">Sign up to start using Cognee</p>
<AuthForm
authUrl="/v1/auth/register"
submitButtonText="Sign up"
onSignInSuccess={() => window.location.href = "/auth/login"}
/>
<p className="text-center mt-2 text-sm">
<Link href="/auth/login">
{"Or go to Login ->"}
</Link>
</p>
</div>
</div>
);
}