We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/keithah/monarchmoney-ts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// Jest setup file for global test configuration
// Mock console methods to reduce noise in tests
global.console = {
...console,
// Uncomment to ignore specific log levels
// log: jest.fn(),
// debug: jest.fn(),
// info: jest.fn(),
// warn: jest.fn(),
// error: jest.fn(),
};
// Set test timeout
jest.setTimeout(10000);
// Mock Date for consistent testing if needed
// const mockDate = new Date('2024-01-15T12:00:00Z');
// global.Date = jest.fn(() => mockDate) as any;
// Object.assign(global.Date, Date);