We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thecombatwombat/replicant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
exclude: ['**/node_modules/**', '**/dist/**', '.worktrees/**'],
coverage: {
provider: 'v8',
enabled: false, // Only enable with --coverage flag
include: ['src/**/*.ts'],
exclude: [
'src/**/index.ts', // Barrel exports
'src/types/**', // Type definitions
'src/cli/**', // Thin CLI wrappers (excluded from complexity checks too)
'**/*.d.ts',
'tests/**',
],
reportsDirectory: './coverage',
reporter: ['text', 'html', 'json-summary', 'clover'],
thresholds: {
lines: 68,
branches: 60,
functions: 60,
statements: 67,
perFile: false,
},
},
},
});