mcpcap 0.4.0__tar.gz → 0.4.2__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.
- {mcpcap-0.4.0 → mcpcap-0.4.2}/.gitignore +2 -1
- {mcpcap-0.4.0 → mcpcap-0.4.2}/PKG-INFO +11 -5
- {mcpcap-0.4.0 → mcpcap-0.4.2}/README.md +7 -1
- {mcpcap-0.4.0 → mcpcap-0.4.2}/pyproject.toml +3 -3
- mcpcap-0.4.2/server.json +22 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/_version.py +3 -3
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap.egg-info/PKG-INFO +11 -5
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap.egg-info/SOURCES.txt +1 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/.github/FUNDING.yml +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/.github/workflows/release.yml +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/.github/workflows/test.yml +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/.readthedocs.yaml +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/LICENSE +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/Makefile +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/_static/.gitkeep +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/api/cli.rst +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/api/core.rst +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/api/modules.rst +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/conf.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/index.rst +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/user-guide/analysis-guides.md +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/user-guide/installation.md +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/user-guide/mcp-integration.md +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/docs/source/user-guide/quickstart.md +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/examples/README.md +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/examples/dhcp.pcap +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/examples/dns.pcap +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/readme-assets/mcpcap-logo.png +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/setup.cfg +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/__init__.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/cli.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/core/__init__.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/core/config.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/core/server.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/modules/__init__.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/modules/base.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/modules/dhcp.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap/modules/dns.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap.egg-info/dependency_links.txt +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap.egg-info/entry_points.txt +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap.egg-info/requires.txt +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/src/mcpcap.egg-info/top_level.txt +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/tests/__init__.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/tests/test_cli.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/tests/test_dhcp.py +0 -0
- {mcpcap-0.4.0 → mcpcap-0.4.2}/tests/test_dns.py +0 -0
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcpcap
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.2
|
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/
|
8
|
-
Project-URL: Repository, https://github.com/
|
9
|
-
Project-URL: Issues, https://github.com/
|
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,9 @@ Dynamic: license-file
|
|
44
44
|
|
45
45
|
# mcpcap
|
46
46
|
|
47
|
-
|
47
|
+
[](mcp-name:ai.mcpcap/mcpcap)
|
48
|
+
|
49
|
+

|
48
50
|
|
49
51
|
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
52
|
|
@@ -313,6 +315,10 @@ MIT
|
|
313
315
|
- fastmcp (MCP server framework)
|
314
316
|
- All dependencies are automatically installed via pip
|
315
317
|
|
318
|
+
## Documentation
|
319
|
+
|
320
|
+
Full documentation is available at [docs.mcpcap.ai](https://docs.mcpcap.ai)
|
321
|
+
|
316
322
|
## Support
|
317
323
|
|
318
324
|
For questions, issues, or feature requests, please open an issue on GitHub.
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# mcpcap
|
2
2
|
|
3
|
-
|
3
|
+
[](mcp-name:ai.mcpcap/mcpcap)
|
4
|
+
|
5
|
+

|
4
6
|
|
5
7
|
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
8
|
|
@@ -269,6 +271,10 @@ MIT
|
|
269
271
|
- fastmcp (MCP server framework)
|
270
272
|
- All dependencies are automatically installed via pip
|
271
273
|
|
274
|
+
## Documentation
|
275
|
+
|
276
|
+
Full documentation is available at [docs.mcpcap.ai](https://docs.mcpcap.ai)
|
277
|
+
|
272
278
|
## Support
|
273
279
|
|
274
280
|
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/
|
57
|
-
Repository = "https://github.com/
|
58
|
-
Issues = "https://github.com/
|
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"
|
mcpcap-0.4.2/server.json
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
3
|
+
"name": "ai.mcpcap/mcpcap",
|
4
|
+
"description": "An MCP server for analyzing PCAP files.",
|
5
|
+
"status": "active",
|
6
|
+
"repository": {
|
7
|
+
"url": "https://github.com/mcpcap/mcpcap",
|
8
|
+
"source": "github"
|
9
|
+
},
|
10
|
+
"version": "0.4.2",
|
11
|
+
"packages": [
|
12
|
+
{
|
13
|
+
"registry_type": "pypi",
|
14
|
+
"registry_base_url": "https://pypi.org",
|
15
|
+
"identifier": "mcpcap",
|
16
|
+
"version": "0.4.2",
|
17
|
+
"transport": {
|
18
|
+
"type": "stdio"
|
19
|
+
}
|
20
|
+
}
|
21
|
+
]
|
22
|
+
}
|
@@ -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.
|
32
|
-
__version_tuple__ = version_tuple = (0, 4,
|
31
|
+
__version__ = version = '0.4.2'
|
32
|
+
__version_tuple__ = version_tuple = (0, 4, 2)
|
33
33
|
|
34
|
-
__commit_id__ = commit_id = '
|
34
|
+
__commit_id__ = commit_id = 'g2366c5c90'
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcpcap
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.2
|
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/
|
8
|
-
Project-URL: Repository, https://github.com/
|
9
|
-
Project-URL: Issues, https://github.com/
|
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,9 @@ Dynamic: license-file
|
|
44
44
|
|
45
45
|
# mcpcap
|
46
46
|
|
47
|
-
|
47
|
+
[](mcp-name:ai.mcpcap/mcpcap)
|
48
|
+
|
49
|
+

|
48
50
|
|
49
51
|
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
52
|
|
@@ -313,6 +315,10 @@ MIT
|
|
313
315
|
- fastmcp (MCP server framework)
|
314
316
|
- All dependencies are automatically installed via pip
|
315
317
|
|
318
|
+
## Documentation
|
319
|
+
|
320
|
+
Full documentation is available at [docs.mcpcap.ai](https://docs.mcpcap.ai)
|
321
|
+
|
316
322
|
## Support
|
317
323
|
|
318
324
|
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
|
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
|