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
slugConsistancy.test.ts•419 B
import { describe, expect, it } from 'vitest';
import { runSlugConsistencyTest } from './slugConsistancy';
describe('Slug Consistency', () => {
it('should ensure slugs in front matter are identical across all language versions', () => {
const result = runSlugConsistencyTest();
expect(result.filesWithSlugMismatches).toBe(0);
}, 60000); // 60 second timeout for processing many files across languages
});