We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/justinpreston/mcp-router'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['src/**/*.test.ts', 'tests/unit/**/*.test.ts'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
include: ['src/main/services/**', 'src/main/repositories/**'],
exclude: ['src/**/*.d.ts', 'src/**/index.ts'],
thresholds: {
statements: 80,
branches: 80,
functions: 80,
lines: 80,
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'@main': path.resolve(__dirname, './src/main'),
'@renderer': path.resolve(__dirname, './src/renderer'),
'@preload': path.resolve(__dirname, './src/preload'),
'@tests': path.resolve(__dirname, './tests'),
},
},
});