Skip to main content
Glama

Lambda Performance MCP Server

by jghidalgo
setup.js617 B
// Jest setup file require('dotenv').config({ path: '.env.test' }); // Mock AWS SDK for testing jest.mock('@aws-sdk/client-lambda'); jest.mock('@aws-sdk/client-cloudwatch'); jest.mock('@aws-sdk/client-cloudwatch-logs'); // Global test timeout jest.setTimeout(30000); // Suppress console.error in tests unless explicitly needed const originalError = console.error; beforeAll(() => { console.error = (...args) => { if (args[0]?.includes?.('Warning') || process.env.SHOW_CONSOLE_ERRORS) { originalError(...args); } }; }); afterAll(() => { console.error = originalError; });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jghidalgo/lambda-performance-mcp-nodejs'

If you have feedback or need assistance with the MCP directory API, please join our Discord server