We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import LocaleSwitcher from 'components/LocaleSwitcher';
import PageLayout from 'components/PageLayout';
import type { GetStaticPropsContext } from 'next';
import { useTranslations } from 'next-intl';
export default function Index() {
const t = useTranslations('Index');
return (
<PageLayout title={t('title')}>
<p>{t('description')}</p>
<LocaleSwitcher />
</PageLayout>
);
}
export async function getStaticProps({ locale }: GetStaticPropsContext) {
return {
props: {
messages: (await import(`../../messages/${locale}.json`)).default,
},
};
}