@iflow-mcp/sharkmcp
Version:
A Wireshark MCP server for network packet analysis
30 lines • 867 B
TypeScript
import { z } from "zod";
/**
* Input schema for analyze pcap file tool
*/
export declare const analyzePcapFileSchema: {
filePath: z.ZodString;
displayFilter: z.ZodOptional<z.ZodString>;
outputFormat: z.ZodDefault<z.ZodOptional<z.ZodEnum<["json", "fields", "text"]>>>;
customFields: z.ZodOptional<z.ZodString>;
sslKeylogFile: z.ZodOptional<z.ZodString>;
configName: z.ZodOptional<z.ZodString>;
};
/**
* Tool handler for analyzing an existing PCAP file
* This tool analyzes pre-existing PCAP/PCAPNG files without needing to capture
*/
export declare function analyzePcapFileHandler(args: any): Promise<{
content: {
type: "text";
text: string;
}[];
isError: boolean;
} | {
content: {
type: "text";
text: string;
}[];
isError?: never;
}>;
//# sourceMappingURL=analyze-pcap-file.d.ts.map