We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jhgaylor/express-mcp-handler'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•269 B
// Jest setup file
// This would be referenced in jest.config.js if we needed specific setup for tests
// Mock console methods to reduce noise during tests
global.console = {
...console,
log: jest.fn(),
error: jest.fn(),
warn: jest.fn(),
info: jest.fn(),
};