Skip to main content
Glama

mcp-server-neon

Official
import type { ReactNode } from 'react'; import type { Metadata } from 'next'; import Head from 'next/head'; import { Geist, Geist_Mono } from 'next/font/google'; import { ThemeProvider } from '@/components/ThemeProvider'; import './globals.css'; const geistSans = Geist({ variable: '--font-geist-sans', subsets: ['latin'], }); const geistMono = Geist_Mono({ variable: '--font-geist-mono', subsets: ['latin'], }); export const metadata: Metadata = { title: 'Neon MCP', description: 'Learn how to use Neon MCP', }; export default function RootLayout({ children }: { children: ReactNode }) { return ( <html lang="en"> <Head> <link rel="icon" href="/favicon.ico" type="image/x-icon" /> </Head> <body className={`${geistSans.variable} ${geistMono.variable} antialiased`} > <ThemeProvider>{children}</ThemeProvider> </body> </html> ); }

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/neondatabase-labs/mcp-server-neon'

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