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
16 lines • 513 B
TypeScript
/**
* Bulk alarm management tool handlers
*/
import { BaseToolHandler, type ToolArgs, type ToolResponse } from './base.js';
import type { FirewallaClient } from '../../firewalla/client.js';
/**
* Bulk delete multiple alarms
*/
export declare class BulkDeleteAlarmsHandler extends BaseToolHandler {
name: string;
description: string;
category: "security";
constructor();
execute(args: ToolArgs, firewalla: FirewallaClient): Promise<ToolResponse>;
}
//# sourceMappingURL=bulk-alarms.d.ts.map