We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gilbarbara/agent-hub-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import tsconfigPaths from 'vite-tsconfig-paths';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
coverage: {
all: true,
reporter: ['text', 'html', 'lcov'],
include: ['src/**/*'],
exclude: ['src/index.ts', 'src/index-http.ts', 'src/servers/**/*'],
},
globals: true,
setupFiles: ['./vitest.setup.ts'],
include: ['test/**/*.{test,spec}.{ts,tsx}'],
exclude: ['test/e2e/**'],
},
});