Skip to main content
Glama

DollhouseMCP

by DollhouseMCP
setup.tsโ€ข747 B
import { jest } from '@jest/globals'; // Security test timeouts jest.setTimeout(30000); // 30 seconds max per test // Mock dangerous operations during tests global.console.warn = jest.fn(); global.console.error = jest.fn(); // Ensure tests run in isolated environment process.env.NODE_ENV = 'test'; process.env.SECURITY_TEST = 'true'; // Mock file system for security tests jest.mock('fs/promises', () => { const actual = jest.requireActual('fs/promises') as any; return { ...actual, unlink: jest.fn(), rmdir: jest.fn(), rm: jest.fn() }; }); // Export test utilities export { SecurityTestFramework } from './framework/SecurityTestFramework.js'; export { RapidSecurityTesting } from './framework/RapidSecurityTesting.js';

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DollhouseMCP/DollhouseMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server