We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/88-888/n8n-mcp'
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: ['tests/benchmarks/**/*.bench.ts'],
benchmark: {
// Benchmark specific options
include: ['tests/benchmarks/**/*.bench.ts'],
reporters: ['default'],
},
setupFiles: [],
pool: 'forks',
poolOptions: {
forks: {
singleFork: true,
},
},
// Increase timeout for benchmarks
testTimeout: 120000,
hookTimeout: 120000,
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'@tests': path.resolve(__dirname, './tests'),
},
},
});