@democratize-quality/mcp-server
Version:
MCP Server for democratizing quality through browser automation and comprehensive API testing capabilities
55 lines (51 loc) • 1.59 kB
JavaScript
/**
* Development environment configuration
* Settings optimized for development and debugging
*/
module.exports = {
features: {
enableDebugMode: true,
// Tool category feature flags - all enabled by default in development
enableApiTools: true,
enableBrowserTools: true,
enableAdvancedTools: true,
enableFileTools: true,
enableNetworkTools: true,
enableOtherTools: true
},
logging: {
level: 'debug',
enableToolDebug: true
},
tools: {
validationLevel: 'strict',
browser: {
browser_launch: {
defaultHeadless: false, // Show browser in development
maxInstances: 5,
chromeFlags: [
'--disable-gpu',
'--no-sandbox',
'--disable-web-security', // Allow CORS in development
'--disable-features=VizDisplayCompositor'
]
},
browser_screenshot: {
enableTimestamps: true,
outputDirectory: require('path').resolve(__dirname, '../../../output/dev')
},
browser_dom: {
highlightElements: true, // Highlight elements for debugging
enableRetries: true
},
global: {
enableScreenshotOnError: true,
enablePerformanceMetrics: true
}
}
},
security: {
enableInputValidation: true,
rateLimiting: false
}
};