We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DollhouseMCP/DollhouseMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/** @type {import('jest').Config} */
const baseConfig = require('./jest.config.cjs');
const config = {
...baseConfig,
testMatch: [
'<rootDir>/test/__tests__/performance/**/*.test.ts'
],
// Remove performance test exclusion from base config's ignore patterns
testPathIgnorePatterns: baseConfig.testPathIgnorePatterns.filter(
pattern => pattern !== '/test/__tests__/performance/'
),
// Use 4 workers to batch test files (5 files total) for faster execution
// Reduces setup overhead while maintaining isolation
maxWorkers: 4,
// Increase timeout for performance tests
testTimeout: 30000,
// Display individual test results
verbose: true,
// Don't collect coverage for performance tests
collectCoverage: false
};
module.exports = config;