We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aotakeda/local-lens'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•492 B
// Global test setup file - applies to all tests
process.env.NODE_ENV = 'test';
// Increase timeout for async operations
jest.setTimeout(10000);
// Import and apply global mocks
import { mockMCPServer, mockIndexLogger } from './utils/mocks';
// Apply global mocks that all tests need
mockMCPServer();
mockIndexLogger();
// Global test cleanup
afterAll(async () => {
// Allow time for any pending async operations to complete
await new Promise(resolve => setTimeout(resolve, 100));
});