Skip to main content
Glama
layout.tsx539 B
import { ReactNode } from "react"; import Sidebar from "./sidebar"; import Navbar from "./navbar"; interface LayoutProps { children: ReactNode; } export default function Layout({ children }: LayoutProps) { return ( <div className="flex h-screen overflow-hidden bg-neutral-50"> <Sidebar /> <div className="flex flex-col w-0 flex-1 overflow-hidden"> <Navbar /> <main className="flex-1 relative z-0 overflow-y-auto focus:outline-none"> {children} </main> </div> </div> ); }

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/samihalawa/2025-FINAL-mcpMaster'

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