mcpcap 0.4.5__tar.gz → 0.4.6__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 (46) hide show
  1. {mcpcap-0.4.5 → mcpcap-0.4.6}/.github/workflows/release.yml +4 -2
  2. {mcpcap-0.4.5 → mcpcap-0.4.6}/PKG-INFO +1 -1
  3. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/_version.py +3 -3
  4. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap.egg-info/PKG-INFO +1 -1
  5. {mcpcap-0.4.5 → mcpcap-0.4.6}/.github/FUNDING.yml +0 -0
  6. {mcpcap-0.4.5 → mcpcap-0.4.6}/.github/workflows/test.yml +0 -0
  7. {mcpcap-0.4.5 → mcpcap-0.4.6}/.gitignore +0 -0
  8. {mcpcap-0.4.5 → mcpcap-0.4.6}/.readthedocs.yaml +0 -0
  9. {mcpcap-0.4.5 → mcpcap-0.4.6}/LICENSE +0 -0
  10. {mcpcap-0.4.5 → mcpcap-0.4.6}/README.md +0 -0
  11. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/Makefile +0 -0
  12. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/_static/.gitkeep +0 -0
  13. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/api/cli.rst +0 -0
  14. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/api/core.rst +0 -0
  15. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/api/modules.rst +0 -0
  16. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/conf.py +0 -0
  17. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/index.rst +0 -0
  18. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/user-guide/analysis-guides.md +0 -0
  19. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/user-guide/installation.md +0 -0
  20. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/user-guide/mcp-integration.md +0 -0
  21. {mcpcap-0.4.5 → mcpcap-0.4.6}/docs/source/user-guide/quickstart.md +0 -0
  22. {mcpcap-0.4.5 → mcpcap-0.4.6}/examples/README.md +0 -0
  23. {mcpcap-0.4.5 → mcpcap-0.4.6}/examples/dhcp.pcap +0 -0
  24. {mcpcap-0.4.5 → mcpcap-0.4.6}/examples/dns.pcap +0 -0
  25. {mcpcap-0.4.5 → mcpcap-0.4.6}/pyproject.toml +0 -0
  26. {mcpcap-0.4.5 → mcpcap-0.4.6}/readme-assets/mcpcap-logo.png +0 -0
  27. {mcpcap-0.4.5 → mcpcap-0.4.6}/server.json +0 -0
  28. {mcpcap-0.4.5 → mcpcap-0.4.6}/setup.cfg +0 -0
  29. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/__init__.py +0 -0
  30. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/cli.py +0 -0
  31. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/core/__init__.py +0 -0
  32. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/core/config.py +0 -0
  33. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/core/server.py +0 -0
  34. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/modules/__init__.py +0 -0
  35. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/modules/base.py +0 -0
  36. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/modules/dhcp.py +0 -0
  37. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap/modules/dns.py +0 -0
  38. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap.egg-info/SOURCES.txt +0 -0
  39. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap.egg-info/dependency_links.txt +0 -0
  40. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap.egg-info/entry_points.txt +0 -0
  41. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap.egg-info/requires.txt +0 -0
  42. {mcpcap-0.4.5 → mcpcap-0.4.6}/src/mcpcap.egg-info/top_level.txt +0 -0
  43. {mcpcap-0.4.5 → mcpcap-0.4.6}/tests/__init__.py +0 -0
  44. {mcpcap-0.4.5 → mcpcap-0.4.6}/tests/test_cli.py +0 -0
  45. {mcpcap-0.4.5 → mcpcap-0.4.6}/tests/test_dhcp.py +0 -0
  46. {mcpcap-0.4.5 → mcpcap-0.4.6}/tests/test_dns.py +0 -0
@@ -107,15 +107,17 @@ jobs:
107
107
  if: steps.pypi_publish.outcome == 'success'
108
108
  uses: actions/setup-go@v5
109
109
  with:
110
- go-version: '1.22.x'
110
+ go-version: '1.24.x'
111
111
 
112
112
  - name: Install MCP Publisher
113
113
  if: steps.pypi_publish.outcome == 'success'
114
114
  run: |
115
+ set -euo pipefail
115
116
  git clone https://github.com/modelcontextprotocol/registry publisher-repo
116
117
  cd publisher-repo
117
118
  make publisher
118
- cp cmd/publisher/bin/mcp-publisher ../mcp-publisher
119
+ test -f bin/mcp-publisher || { echo "mcp-publisher binary not found at bin/mcp-publisher"; ls -R; exit 1; }
120
+ cp bin/mcp-publisher ../mcp-publisher
119
121
  cd ..
120
122
  chmod +x mcp-publisher
121
123
  ./mcp-publisher --version || true
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcpcap
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: A modular Python MCP Server for analyzing PCAP files
5
5
  Author: mcpcap contributors
6
6
  License: MIT License
@@ -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.5'
32
- __version_tuple__ = version_tuple = (0, 4, 5)
31
+ __version__ = version = '0.4.6'
32
+ __version_tuple__ = version_tuple = (0, 4, 6)
33
33
 
34
- __commit_id__ = commit_id = 'g238af620f'
34
+ __commit_id__ = commit_id = 'g08d39baa0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcpcap
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: A modular Python MCP Server for analyzing PCAP files
5
5
  Author: mcpcap contributors
6
6
  License: MIT License
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
File without changes
File without changes
File without changes