We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/profullstack/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.js•522 B
/**
* Test setup file for Domain Lookup Module
*
* This file is loaded before all tests run and sets up the testing environment.
*/
// Set up global test environment
process.env.NODE_ENV = 'test';
// Suppress console output during tests unless explicitly needed
const originalConsole = { ...console };
before(() => {
// You can add global setup here if needed
});
after(() => {
// You can add global cleanup here if needed
});
// Export utilities that might be useful across tests
export { originalConsole };