We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jhlee0409/elenchus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
vitest.integration.config.ts•452 B
import { defineConfig } from 'vitest/config';
/**
* Integration test configuration
* These tests import from compiled dist/ and test the full MCP tool flow
*/
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/integration/**/*.test.ts'],
testTimeout: 60000, // Integration tests may take longer
sequence: {
shuffle: false // Run in order for session lifecycle tests
}
}
});