We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbraind/mcp-lite-wrappers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node",
include: ["tests/e2e/**/*.test.ts"],
testTimeout: 60000, // Long timeout for E2E scenarios
hookTimeout: 60000,
setupFiles: ["tests/integration/setup.ts"],
pool: "forks",
poolOptions: {
forks: {
singleFork: true,
},
},
},
});