We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/superglue-ai/superglue'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { config } from 'dotenv'
import { resolve } from 'node:path'
import { defineConfig } from 'vitest/config'
config({ path: resolve(__dirname, '../../.env') })
export default defineConfig({
test: {
globals: true,
environment: 'node',
testTimeout: 12000000, // 120 minutes for integration tests
hookTimeout: 180000, // 3 minutes for setup/teardown hooks
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/**',
'dist/**',
'**/*.d.ts',
'test/**',
'**/*.test.ts',
'**/*.spec.ts',
],
},
},
envDir: '../../',
build: {
sourcemap: true,
}
})