We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/im47cn/feishu-project-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•382 B
import dotenv from 'dotenv';
// Load test environment variables
dotenv.config({ path: '.env.test' });
// Set up global test environment
global.beforeAll(() => {
// Setup code that runs before all tests
console.log('Setting up test environment...');
});
global.afterAll(() => {
// Cleanup code that runs after all tests
console.log('Cleaning up test environment...');
});