We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest, import('jest').Config} */
const { join } = require("path");
module.exports = {
preset: "ts-jest/presets/js-with-ts",
testEnvironment: "node",
testTimeout: 10000,
globals: {
// jsdom + Jest don't implement fetch which we need to test ConvexHttpClient
fetch: global.fetch,
},
setupFilesAfterEnv: [join(__dirname, "setup-jest.js")],
// Only run one suite at a time because all of our tests are running against
// the same backend and we don't want to leak state.
maxWorkers: 1,
};