#
tokens: 178/50000 2/2 files
lines: on (toggle) GitHub
raw markdown copy reset
# Directory Structure

```
├── .gitignore
├── DOCUMENTATION.md
├── example_client.py
├── README.md
├── requirements.txt
└── wireshark_mcp
    └── wireshark_mcp_server.py
```

# Files

--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------

```
1 | # SpecStory explanation file
2 | .specstory/.what-is-this.md
3 | 
```

--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------

```
1 | mcp>=1.4.1
2 | pyshark>=0.6.0
3 | pydantic>=2.7.2
4 | fastapi>=0.95.0
5 | uvicorn>=0.21.0 
6 | flask>=2.0.0
```