mcppt 1.0.0__tar.gz → 1.0.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.
- {mcppt-1.0.0 → mcppt-1.0.1}/PKG-INFO +10 -3
- {mcppt-1.0.0 → mcppt-1.0.1}/README.md +9 -2
- mcppt-1.0.1/mcppt/__init__.py +1 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/pyproject.toml +1 -1
- mcppt-1.0.0/mcppt/__init__.py +0 -1
- {mcppt-1.0.0 → mcppt-1.0.1}/.github/workflows/ci.yml +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/.gitignore +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/LICENSE +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/OPERATOR_GUIDE.md +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/app.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/docs/MCPTROTTER_ARTICLE.md +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/docs/MCPTROTTER_MEDIUM.md +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/docs/mcptrotter.jpeg +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/checks.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/cli.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/core.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/report.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/server.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/shell.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/tui.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/requirements.txt +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/smoke_test.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/test_report.md +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/test_server.log +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/test_server.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/tests/__init__.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/tests/test_checks.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/tests/test_core.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/vuln_server.py +0 -0
- {mcppt-1.0.0 → mcppt-1.0.1}/wbs_scan_report.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcppt
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: MCPTROTTER — MCP Pentest Tool: 28 automated security checks for MCP servers
|
|
5
5
|
Project-URL: Homepage, https://github.com/gurudeepmallam-cmd/mcppt
|
|
6
6
|
Project-URL: Repository, https://github.com/gurudeepmallam-cmd/mcppt
|
|
@@ -32,10 +32,11 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
# MCPTROTTER — MCP Pentest Tool
|
|
33
33
|
|
|
34
34
|
<p align="center">
|
|
35
|
-
<
|
|
35
|
+
<img src="https://raw.githubusercontent.com/gurudeepmallam-cmd/mcppt/main/docs/mcptrotter.jpeg" alt="MCPTROTTER" width="380"/>
|
|
36
36
|
</p>
|
|
37
37
|
|
|
38
38
|
<p align="center">
|
|
39
|
+
<img src="https://img.shields.io/pypi/v/mcppt?label=PyPI&color=orange"/>
|
|
39
40
|
<img src="https://img.shields.io/badge/python-3.10%2B-blue"/>
|
|
40
41
|
<img src="https://img.shields.io/badge/checks-28-red"/>
|
|
41
42
|
<img src="https://img.shields.io/badge/license-MIT-green"/>
|
|
@@ -67,13 +68,19 @@ Works against any MCP server using Streamable HTTP transport (POST + SSE respons
|
|
|
67
68
|
|
|
68
69
|
## Install
|
|
69
70
|
|
|
71
|
+
**From PyPI (recommended):**
|
|
72
|
+
```bash
|
|
73
|
+
pip install mcppt
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
**From source:**
|
|
70
77
|
```bash
|
|
71
78
|
git clone https://github.com/gurudeepmallam-cmd/mcppt
|
|
72
79
|
cd mcppt/mcppt_tool
|
|
73
80
|
pip install -e .
|
|
74
81
|
```
|
|
75
82
|
|
|
76
|
-
Requires Python 3.10+.
|
|
83
|
+
Requires Python 3.10+.
|
|
77
84
|
|
|
78
85
|
---
|
|
79
86
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# MCPTROTTER — MCP Pentest Tool
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<
|
|
4
|
+
<img src="https://raw.githubusercontent.com/gurudeepmallam-cmd/mcppt/main/docs/mcptrotter.jpeg" alt="MCPTROTTER" width="380"/>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
+
<img src="https://img.shields.io/pypi/v/mcppt?label=PyPI&color=orange"/>
|
|
8
9
|
<img src="https://img.shields.io/badge/python-3.10%2B-blue"/>
|
|
9
10
|
<img src="https://img.shields.io/badge/checks-28-red"/>
|
|
10
11
|
<img src="https://img.shields.io/badge/license-MIT-green"/>
|
|
@@ -36,13 +37,19 @@ Works against any MCP server using Streamable HTTP transport (POST + SSE respons
|
|
|
36
37
|
|
|
37
38
|
## Install
|
|
38
39
|
|
|
40
|
+
**From PyPI (recommended):**
|
|
41
|
+
```bash
|
|
42
|
+
pip install mcppt
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
**From source:**
|
|
39
46
|
```bash
|
|
40
47
|
git clone https://github.com/gurudeepmallam-cmd/mcppt
|
|
41
48
|
cd mcppt/mcppt_tool
|
|
42
49
|
pip install -e .
|
|
43
50
|
```
|
|
44
51
|
|
|
45
|
-
Requires Python 3.10+.
|
|
52
|
+
Requires Python 3.10+.
|
|
46
53
|
|
|
47
54
|
---
|
|
48
55
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.1"
|
mcppt-1.0.0/mcppt/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.0.0"
|
|
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
|