mcpcap 0.4.0__tar.gz → 0.4.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. {mcpcap-0.4.0 → mcpcap-0.4.1}/PKG-INFO +9 -5
  2. {mcpcap-0.4.0 → mcpcap-0.4.1}/README.md +5 -1
  3. {mcpcap-0.4.0 → mcpcap-0.4.1}/pyproject.toml +3 -3
  4. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/_version.py +3 -3
  5. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap.egg-info/PKG-INFO +9 -5
  6. {mcpcap-0.4.0 → mcpcap-0.4.1}/.github/FUNDING.yml +0 -0
  7. {mcpcap-0.4.0 → mcpcap-0.4.1}/.github/workflows/release.yml +0 -0
  8. {mcpcap-0.4.0 → mcpcap-0.4.1}/.github/workflows/test.yml +0 -0
  9. {mcpcap-0.4.0 → mcpcap-0.4.1}/.gitignore +0 -0
  10. {mcpcap-0.4.0 → mcpcap-0.4.1}/.readthedocs.yaml +0 -0
  11. {mcpcap-0.4.0 → mcpcap-0.4.1}/LICENSE +0 -0
  12. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/Makefile +0 -0
  13. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/_static/.gitkeep +0 -0
  14. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/api/cli.rst +0 -0
  15. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/api/core.rst +0 -0
  16. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/api/modules.rst +0 -0
  17. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/conf.py +0 -0
  18. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/index.rst +0 -0
  19. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/user-guide/analysis-guides.md +0 -0
  20. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/user-guide/installation.md +0 -0
  21. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/user-guide/mcp-integration.md +0 -0
  22. {mcpcap-0.4.0 → mcpcap-0.4.1}/docs/source/user-guide/quickstart.md +0 -0
  23. {mcpcap-0.4.0 → mcpcap-0.4.1}/examples/README.md +0 -0
  24. {mcpcap-0.4.0 → mcpcap-0.4.1}/examples/dhcp.pcap +0 -0
  25. {mcpcap-0.4.0 → mcpcap-0.4.1}/examples/dns.pcap +0 -0
  26. {mcpcap-0.4.0 → mcpcap-0.4.1}/readme-assets/mcpcap-logo.png +0 -0
  27. {mcpcap-0.4.0 → mcpcap-0.4.1}/setup.cfg +0 -0
  28. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/__init__.py +0 -0
  29. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/cli.py +0 -0
  30. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/core/__init__.py +0 -0
  31. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/core/config.py +0 -0
  32. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/core/server.py +0 -0
  33. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/modules/__init__.py +0 -0
  34. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/modules/base.py +0 -0
  35. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/modules/dhcp.py +0 -0
  36. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap/modules/dns.py +0 -0
  37. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap.egg-info/SOURCES.txt +0 -0
  38. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap.egg-info/dependency_links.txt +0 -0
  39. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap.egg-info/entry_points.txt +0 -0
  40. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap.egg-info/requires.txt +0 -0
  41. {mcpcap-0.4.0 → mcpcap-0.4.1}/src/mcpcap.egg-info/top_level.txt +0 -0
  42. {mcpcap-0.4.0 → mcpcap-0.4.1}/tests/__init__.py +0 -0
  43. {mcpcap-0.4.0 → mcpcap-0.4.1}/tests/test_cli.py +0 -0
  44. {mcpcap-0.4.0 → mcpcap-0.4.1}/tests/test_dhcp.py +0 -0
  45. {mcpcap-0.4.0 → mcpcap-0.4.1}/tests/test_dns.py +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcpcap
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: A modular Python MCP Server for analyzing PCAP files
5
5
  Author: mcpcap contributors
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/danohn/mcpcap
8
- Project-URL: Repository, https://github.com/danohn/mcpcap
9
- Project-URL: Issues, https://github.com/danohn/mcpcap/issues
7
+ Project-URL: Homepage, https://github.com/mcpcap/mcpcap
8
+ Project-URL: Repository, https://github.com/mcpcap/mcpcap
9
+ Project-URL: Issues, https://github.com/mcpcap/mcpcap/issues
10
10
  Keywords: pcap,network,analysis,mcp,dns
11
11
  Classifier: Development Status :: 3 - Alpha
12
12
  Classifier: Intended Audience :: Developers
@@ -44,7 +44,7 @@ Dynamic: license-file
44
44
 
45
45
  # mcpcap
46
46
 
47
- ![mcpcap logo](https://raw.githubusercontent.com/danohn/mcpcap/main/readme-assets/mcpcap-logo.png)
47
+ ![mcpcap logo](https://raw.githubusercontent.com/mcpcap/mcpcap/main/readme-assets/mcpcap-logo.png)
48
48
 
49
49
  A modular Python MCP (Model Context Protocol) Server for analyzing PCAP files. mcpcap enables LLMs to read and analyze network packet captures from local or remote sources, providing structured JSON responses about network traffic.
50
50
 
@@ -313,6 +313,10 @@ MIT
313
313
  - fastmcp (MCP server framework)
314
314
  - All dependencies are automatically installed via pip
315
315
 
316
+ ## Documentation
317
+
318
+ Full documentation is available at [docs.mcpcap.ai](https://docs.mcpcap.ai)
319
+
316
320
  ## Support
317
321
 
318
322
  For questions, issues, or feature requests, please open an issue on GitHub.
@@ -1,6 +1,6 @@
1
1
  # mcpcap
2
2
 
3
- ![mcpcap logo](https://raw.githubusercontent.com/danohn/mcpcap/main/readme-assets/mcpcap-logo.png)
3
+ ![mcpcap logo](https://raw.githubusercontent.com/mcpcap/mcpcap/main/readme-assets/mcpcap-logo.png)
4
4
 
5
5
  A modular Python MCP (Model Context Protocol) Server for analyzing PCAP files. mcpcap enables LLMs to read and analyze network packet captures from local or remote sources, providing structured JSON responses about network traffic.
6
6
 
@@ -269,6 +269,10 @@ MIT
269
269
  - fastmcp (MCP server framework)
270
270
  - All dependencies are automatically installed via pip
271
271
 
272
+ ## Documentation
273
+
274
+ Full documentation is available at [docs.mcpcap.ai](https://docs.mcpcap.ai)
275
+
272
276
  ## Support
273
277
 
274
278
  For questions, issues, or feature requests, please open an issue on GitHub.
@@ -53,9 +53,9 @@ docs = [
53
53
  ]
54
54
 
55
55
  [project.urls]
56
- Homepage = "https://github.com/danohn/mcpcap"
57
- Repository = "https://github.com/danohn/mcpcap"
58
- Issues = "https://github.com/danohn/mcpcap/issues"
56
+ Homepage = "https://github.com/mcpcap/mcpcap"
57
+ Repository = "https://github.com/mcpcap/mcpcap"
58
+ Issues = "https://github.com/mcpcap/mcpcap/issues"
59
59
 
60
60
  [project.scripts]
61
61
  mcpcap = "mcpcap:main"
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.4.0'
32
- __version_tuple__ = version_tuple = (0, 4, 0)
31
+ __version__ = version = '0.4.1'
32
+ __version_tuple__ = version_tuple = (0, 4, 1)
33
33
 
34
- __commit_id__ = commit_id = 'g17496513d'
34
+ __commit_id__ = commit_id = 'gb756064db'
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcpcap
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: A modular Python MCP Server for analyzing PCAP files
5
5
  Author: mcpcap contributors
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/danohn/mcpcap
8
- Project-URL: Repository, https://github.com/danohn/mcpcap
9
- Project-URL: Issues, https://github.com/danohn/mcpcap/issues
7
+ Project-URL: Homepage, https://github.com/mcpcap/mcpcap
8
+ Project-URL: Repository, https://github.com/mcpcap/mcpcap
9
+ Project-URL: Issues, https://github.com/mcpcap/mcpcap/issues
10
10
  Keywords: pcap,network,analysis,mcp,dns
11
11
  Classifier: Development Status :: 3 - Alpha
12
12
  Classifier: Intended Audience :: Developers
@@ -44,7 +44,7 @@ Dynamic: license-file
44
44
 
45
45
  # mcpcap
46
46
 
47
- ![mcpcap logo](https://raw.githubusercontent.com/danohn/mcpcap/main/readme-assets/mcpcap-logo.png)
47
+ ![mcpcap logo](https://raw.githubusercontent.com/mcpcap/mcpcap/main/readme-assets/mcpcap-logo.png)
48
48
 
49
49
  A modular Python MCP (Model Context Protocol) Server for analyzing PCAP files. mcpcap enables LLMs to read and analyze network packet captures from local or remote sources, providing structured JSON responses about network traffic.
50
50
 
@@ -313,6 +313,10 @@ MIT
313
313
  - fastmcp (MCP server framework)
314
314
  - All dependencies are automatically installed via pip
315
315
 
316
+ ## Documentation
317
+
318
+ Full documentation is available at [docs.mcpcap.ai](https://docs.mcpcap.ai)
319
+
316
320
  ## Support
317
321
 
318
322
  For questions, issues, or feature requests, please open an issue on GitHub.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes