We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sage-hq/agentcortex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•291 B
import { beforeAll, afterEach, afterAll } from 'vitest';
// Global test setup
beforeAll(() => {
// Set test environment
process.env.NODE_ENV = 'test';
});
afterEach(() => {
// Clean up after each test
// Reset any global state if needed
});
afterAll(() => {
// Final cleanup
});