We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yatotm/tavily-mcp-loadbalancer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
test: {
include: ['src/**/*.spec.ts'],
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json-summary'],
include: ['src/stores/**/*.ts', 'src/composables/**/*.ts', 'src/components/ToolUsageChart.vue'],
exclude: ['**/*.d.ts'],
thresholds: {
lines: 90,
statements: 90,
functions: 90,
branches: 85,
},
},
},
})