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
example.content.ts•403 B
import { type Dictionary, t } from 'intlayer';
const exampleContent = {
key: 'example',
fill: {
es: '/messages/{{locale}}/{{key}}.content.cjs',
},
content: {
new: t({
en: 'This is an example of a new field--',
fr: 'Voici un exemple de nouveau champ--',
es: 'Este es un ejemplo de un nuevo campo--',
}),
},
} satisfies Dictionary;
export default exampleContent;