We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbelinky/x-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•266 B
// Jest setup file
import { jest } from '@jest/globals';
// Mock console.error to avoid noise in tests unless DEBUG is set
if (process.env.DEBUG !== 'true') {
global.console.error = jest.fn();
}
// Set up test environment variables
process.env.NODE_ENV = 'test';