We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/serverless-dna/mkdocs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
vitest.setup.ts•551 B
// Polyfill for Node compatibility with undici/cheerio
// File API is required by undici but not available in all Node versions
if (typeof global.File === 'undefined') {
global.File = class File extends Blob {
name: string;
constructor(
fileBits: BlobPart[],
fileName: string,
options?: FilePropertyBag
) {
super(fileBits, options);
Object.defineProperty(this, 'name', {
value: fileName,
writable: false,
enumerable: true,
configurable: false,
});
}
} as any;
}