We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/medplum/medplum'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// SPDX-FileCopyrightText: Copyright Orangebot, Inc. and Medplum contributors
// SPDX-License-Identifier: Apache-2.0
import { ColorSchemeScript, MantineProvider } from '@mantine/core';
import type { Metadata } from 'next';
import type { JSX, ReactNode } from 'react';
import Root from './root';
import { theme } from './theme';
// eslint-disable-next-line react-refresh/only-export-components
export const metadata: Metadata = {
title: 'Medplum Next.js Demo',
icons: {
icon: '/favicon.svg',
},
};
export default function RootLayout(props: { children: ReactNode }): JSX.Element {
const { children } = props;
return (
<html lang="en">
<head>
<ColorSchemeScript />
<link rel="shortcut icon" href="/favicon.svg" />
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width, user-scalable=no" />
</head>
<body>
<MantineProvider theme={theme}>
<Root>{children}</Root>
</MantineProvider>
</body>
</html>
);
}