analyze_pcap
Extract and convert packet data from a PCAP file into JSON format using WireMCP for LLM-driven network analysis, enabling threat detection and diagnostics.
Instructions
Analyze a PCAP file and provide general packet data as JSON for LLM analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pcapPath | Yes | Path to the PCAP file to analyze (e.g., ./demo.pcap) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pcapPath": {
"description": "Path to the PCAP file to analyze (e.g., ./demo.pcap)",
"type": "string"
}
},
"required": [
"pcapPath"
],
"type": "object"
}