We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jedarden/yt-transcript-dl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.esm.ts•356 B
/**
* ESM migration test setup
* This file sets up the testing environment for ESM compatibility tests
*/
// Global test setup for ESM migration tests
declare global {
var __TEST_ESM_ENVIRONMENT__: boolean;
}
// Mark environment as ESM test environment
globalThis.__TEST_ESM_ENVIRONMENT__ = true;
// Setup any ESM-specific configurations
export {};