We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Marcussy34/localMCP-crawl4ai-RAG'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head>
{/* Favicons */}
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/icon.svg" />
{/* Theme color for mobile browsers */}
<meta name="theme-color" content="#1a1a1a" />
</Head>
<body className="antialiased">
<Main />
<NextScript />
</body>
</Html>
);
}