We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shuji-bonji/w3c-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•424 B
/**
* Test setup file
* Runs before all tests
*/
import { beforeEach } from 'vitest';
import { clearCache } from '../src/data/loader.js';
// Clear cache before each test to ensure isolation
beforeEach(() => {
clearCache();
});
// Optional: Preload data once for all tests to speed up test execution
// Uncomment if you want to share loaded data across tests
// beforeAll(async () => {
// await preloadAll();
// });