We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yudppp/claude-code-history-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•274 B
import { jest } from '@jest/globals';
// Global test setup
beforeEach(() => {
// Clear all console mocks before each test
jest.clearAllMocks();
});
// Mock console.error to avoid noise in tests
global.console = {
...console,
error: jest.fn(),
warn: jest.fn(),
};