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
index.content.ts•439 B
import { type Dictionary, t } from 'intlayer';
const indexContent = {
key: 'index',
content: {
exampleOfContent: t({
en: 'Example of returned content in English',
fr: 'Exemple de contenu renvoyé en français',
'es-ES': 'Ejemplo de contenido devuelto en español (España)',
'es-MX': 'Ejemplo de contenido devuelto en español (México)',
}),
},
} satisfies Dictionary;
export default indexContent;