We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tohachan/diagram-bridge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•277 B
// Global test setup
import { jest } from '@jest/globals';
// Mock console for cleaner test output
global.console = {
...console,
log: jest.fn(),
debug: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
// Set test timeout
jest.setTimeout(30000);