Skip to main content
Glama
layout.tsx855 B
import "./globals.css" import type { Metadata } from "next" import { Inter } from "next/font/google" import Footer from "@/components/footer" import Header from "@/components/header" const inter = Inter({ subsets: ["latin"] }) export const metadata: Metadata = { title: "MCP Auth Example", description: "This is an example site to demonstrate how to use MCP Auth.", } export default function RootLayout({ children }: React.PropsWithChildren) { return ( <html lang="en"> <body className={inter.className}> <div className="flex h-full min-h-screen w-full flex-col justify-between"> <Header title="MCP Auth Example" /> <main className="mx-auto w-full max-w-6xl flex-auto px-4 py-4 sm:px-6 md:py-6"> {children} </main> <Footer /> </div> </body> </html> ) }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcpauth/mcpauth'

If you have feedback or need assistance with the MCP directory API, please join our Discord server