Skip to main content
Glama
Layout.tsx526 B
import { Outlet } from 'react-router-dom'; import Sidebar from './Sidebar/Sidebar'; import type { DataSource } from '../types/datasource'; interface LayoutProps { sources: DataSource[]; isLoading: boolean; } export default function Layout({ sources, isLoading }: LayoutProps) { return ( <div className="flex h-screen bg-background"> <Sidebar sources={sources} isLoading={isLoading} /> <main className="flex-1 overflow-auto" aria-label="Main content"> <Outlet /> </main> </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/bytebase/dbhub'

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