UNPKG

firewalla-mcp-server

Version:

Model Context Protocol (MCP) server for Firewalla MSP API - Provides real-time network monitoring, security analysis, and firewall management through 28 specialized tools compatible with any MCP client

24 lines 747 B
/** * @fileoverview Test mode configuration for Docker health checks * * Provides a configuration that allows the server to start without real credentials * for Docker container health checks and testing purposes. */ /** * Creates a test configuration when MCP_TEST_MODE is set * This allows the server to start for health checks without real credentials */ export function getTestConfig() { return { mspToken: 'test-token', mspId: 'test.firewalla.net', mspBaseUrl: 'https://test.firewalla.net', boxId: 'test-box-id', apiTimeout: 30000, rateLimit: 100, cacheTtl: 300, defaultPageSize: 100, maxPageSize: 10000, }; } //# sourceMappingURL=test-mode-config.js.map