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 { HealthView } from "@common/features/health/components/HealthView";
export default function Page() {
return (
<HealthView
header={<h3 className="sticky top-0 mx-6 pt-4 pb-2">Health</h3>}
PagesWrapper={({ children }) => (
<div className="flex min-h-0 grow">{children}</div>
)}
PageWrapper={({ children }) => (
<div className="scrollbar max-w-full shrink-0 grow overflow-y-auto px-6 pb-4">
{children}
</div>
)}
/>
);
}