We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/j4sun/garmin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•359 B
// Jest setup file
// Add any global test setup here
// Increase timeout for Garmin API tests
jest.setTimeout(30000);
// Mock console methods to reduce noise during tests
global.console = {
...console,
// Uncomment to silence console.log during tests
// log: jest.fn(),
debug: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};