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
interface ModalProps {
isOpen: boolean;
children: React.ReactNode;
}
export default function Modal({ isOpen, children }: ModalProps) {
return isOpen && (
<div className="fixed top-0 left-0 right-0 bottom-0 backdrop-blur-lg z-20 flex items-center justify-center">
{children}
</div>
);
}