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 { Button } from "@ui/Button";
export default function Custom404() {
return (
<div className="flex h-screen items-center justify-center">
<div className="flex gap-2 text-content-primary">
<h2>404</h2>
<div className="flex items-center gap-1 pl-2">
<p>This page could not be found.</p>
<Button
variant="unstyled"
onClick={() => {
window.location.href = "/";
}}
className="flex items-center underline"
>
Go back.
</Button>
</div>
</div>
</div>
);
}