We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/simonwfarrow/worldpay-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { pathsToModuleNameMapper, JestConfigWithTsJest } from "ts-jest";
import { compilerOptions } from "./tsconfig.json";
const jestConfig: JestConfigWithTsJest = {
preset: "ts-jest",
moduleDirectories: ["node_modules", "<rootDir>"],
testMatch: ['**/*.test.ts'],
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths),
setupFilesAfterEnv: ["<rootDir>/tests/jest.setup.ts"],
}
export default jestConfig;