We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/roomi-fields/notebooklm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•321 B
// Global test setup
// This file runs before all tests
import { jest, afterAll } from '@jest/globals';
// Increase timeout for integration tests
jest.setTimeout(30000);
// Environment variables for tests
process.env.NODE_ENV = 'test';
// Cleanup after all tests
afterAll(async () => {
// Close any open handles
});