Skip to main content
Glama

Wireshark MCP Server

AI 어시스턴트가 Wireshark의 명령줄 도구와 상호작용하여 네트워크 트래픽 자동 캡처 및 분석을 수행할 수 있게 해주는 MCP 서버입니다.

Python MCP Wireshark License

개요

Wireshark MCP Server는 AI 어시스턴트와 Wireshark의 명령줄 분석 도구(tshark, dumpcap, capinfos, mergecap)를 연결합니다.

목표는 사용자가 여러 Wireshark 명령을 수동으로 실행할 필요 없이 AI 어시스턴트가 구조화된 MCP 도구를 통해 네트워크 트래픽 분석을 수행할 수 있게 하는 것입니다.

Related MCP server: Wireshark MCP

🔄 동작 방식

Wireshark MCP Server는 AI 어시스턴트와 Wireshark의 명령줄 분석 도구 사이의 다리 역할을 합니다.

┌───────────────────────┐
│     AI Assistant      │
│   Claude Desktop      │
└───────────┬───────────┘
            │
            │ MCP / JSON-RPC
            ▼
┌───────────────────────┐
│  Wireshark MCP Server │
│        Python         │
└───────────┬───────────┘
            │
            ▼
┌────────────────────────────────────────┐
│       Wireshark CLI Tools              │
│                                        │
│ tshark │ dumpcap │ capinfos │ mergecap │
└───────────┬────────────────────────────┘
            │
            ▼
┌─────────────────────────────────────┐
│       Network / PCAP / PCAPNG       │
│                                     │
│ Live Traffic     Capture Files      │
└───────────┬─────────────────────────┘
            │
            ▼
┌───────────────────────┐
│   Structured Results  │
│   Packet / Protocol   │
│   Endpoint / Stream   │
└───────────┬───────────┘
            │
            ▼
┌───────────────────────┐
│     AI Analysis       │
│ Explanation / Summary │
│ Troubleshooting       │
└───────────────────────┘

---

## 🎯 Project Goals

The project aims to provide an AI-accessible interface for:

- Live packet capture
- PCAP analysis
- Display-filter validation
- Protocol hierarchy analysis
- Endpoint analysis
- Conversation analysis
- TCP/UDP stream following
- Packet inspection
- Capture metadata extraction
- Packet export
- Capture file merging

---

## 🧰 Technologies

| Technology | Purpose |
|---|---|
| Python | MCP server implementation |
| Model Context Protocol | AI ↔ tool communication |
| Wireshark | Packet analysis |
| tshark | CLI packet analyzer |
| dumpcap | Packet capture |
| capinfos | Capture metadata |
| mergecap | PCAP merging |
| Claude Desktop | MCP client |

---

## ✨ Features

### Capture

- List network interfaces
- Start live captures
- Stop captures
- Monitor active captures
- Perform short quick captures

### PCAP Analysis

- Read PCAP/PCAPNG files
- Inspect individual packets
- Analyze protocol hierarchy
- Analyze conversations
- Analyze endpoints
- Follow network streams

### Filtering

- Validate Wireshark display filters
- Apply filters to packet analysis
- Export filtered packets

### File Operations

- List generated capture files
- Merge multiple capture files
- Retrieve capture metadata

---

## 🔧 MCP Tools

| Tool | Description |
|---|---|
| `list_interfaces` | List available network interfaces |
| `get_interface_statistics` | Retrieve interface traffic statistics |
| `start_live_capture` | Start a background packet capture |
| `get_capture_status` | Check capture status |
| `list_active_captures` | List running captures |
| `stop_live_capture` | Stop an active capture |
| `quick_capture` | Perform a short packet capture |
| `read_pcap_file` | Read and analyze PCAP files |
| `get_packet_details` | Retrieve detailed packet information |
| `get_protocol_hierarchy` | Analyze protocol distribution |
| `get_conversations` | Analyze network conversations |
| `get_endpoints` | Analyze network endpoints |
| `follow_stream` | Follow TCP/UDP/HTTP/TLS streams |
| `get_capture_summary` | Retrieve capture metadata |
| `export_filtered_packets` | Export filtered packets |
| `merge_capture_files` | Merge capture files |
| `list_capture_files` | List generated captures |
| `validate_display_filter` | Validate Wireshark display filters |

---

## 💻 Installation

1. 리포지토리 클론

git clone https://github.com/dhruvjaiswal-98/wireshark-mcp-server.git
cd wireshark-mcp-server

2. Wireshark 설치

Wireshark must be installed on the host system.
Verify:
tshark --version
dumpcap --version
capinfos --version

3. Python 의존성 설치

pip install -r requirements.txt

4. MCP 서버 실행

python server.py


🤖 Claude Desktop Configuration
Add the MCP server to your Claude Desktop configuration.
Example:
{
  "mcpServers": {
    "wireshark": {
      "command": "python",
      "args": [
        "/absolute/path/to/server.py"
      ]
    }
  }
}
Restart Claude Desktop after changing the configuration.

5. "작동 방식" 섹션 추가

이것은 특히 여러분의 사이버 보안 포트폴리오에 중요합니다.

## 🔄 How It Works

1. The user sends a network-analysis request to the AI assistant.
2. The AI assistant determines which MCP tool is required.
3. The MCP client sends a structured request to the Wireshark MCP server.
4. The MCP server validates the requested operation.
5. The server executes the appropriate Wireshark CLI utility.
6. Wireshark processes the packet capture or live traffic.
7. The MCP server converts the result into structured output.
8. The AI assistant interprets the result and provides an explanation.

🧪 예시 프롬프트

Once connected, you can ask:
Interface discovery
List my available network interfaces.

Packet capture
Capture traffic for 15 seconds and summarize the protocols observed.

DNS analysis
Analyze this PCAP and list all DNS queries.

HTTP analysis
Find HTTP traffic and summarize the hosts contacted.

TCP analysis
Show the top TCP conversations sorted by bytes.

Troubleshooting
Analyze this PCAP and identify unusual retransmissions or connection failures.

Security analysis
Analyze this capture for suspicious network behavior and explain your findings.

🔐 보안 고려 사항

This project executes Wireshark command-line utilities on the local system.
Because packet capture can expose sensitive information:
- Only capture traffic on systems/networks you are authorized to monitor.
- Avoid uploading sensitive PCAP files to third-party services.
- Be careful when following streams containing credentials or personal data.
- Restrict access to generated capture files.
- Do not use packet capture capabilities against systems without authorization.
This project is intended for:
- Security labs
- Network troubleshooting
- CTF environments
- Authorized security testing
- Educational purposes
A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • The web capability layer for AI agents: render, extract, DNS, SSL, WHOIS & more via x402.

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Live browser debugging for AI assistants — DOM, console, network via MCP.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dhruvjaiswal-98/wireshark-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server