We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ooples/mcp-console-automation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
integration.setup.ts•285 B
// Integration test setup
import { jest } from '@jest/globals';
// Longer timeout for integration tests
jest.setTimeout(120000);
// Integration test specific setup
beforeAll(async () => {
// Setup test infrastructure
});
afterAll(async () => {
// Cleanup test infrastructure
});