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.
Files changed (30) hide show
  1. {mcppt-1.0.0 → mcppt-1.0.1}/PKG-INFO +10 -3
  2. {mcppt-1.0.0 → mcppt-1.0.1}/README.md +9 -2
  3. mcppt-1.0.1/mcppt/__init__.py +1 -0
  4. {mcppt-1.0.0 → mcppt-1.0.1}/pyproject.toml +1 -1
  5. mcppt-1.0.0/mcppt/__init__.py +0 -1
  6. {mcppt-1.0.0 → mcppt-1.0.1}/.github/workflows/ci.yml +0 -0
  7. {mcppt-1.0.0 → mcppt-1.0.1}/.gitignore +0 -0
  8. {mcppt-1.0.0 → mcppt-1.0.1}/LICENSE +0 -0
  9. {mcppt-1.0.0 → mcppt-1.0.1}/OPERATOR_GUIDE.md +0 -0
  10. {mcppt-1.0.0 → mcppt-1.0.1}/app.py +0 -0
  11. {mcppt-1.0.0 → mcppt-1.0.1}/docs/MCPTROTTER_ARTICLE.md +0 -0
  12. {mcppt-1.0.0 → mcppt-1.0.1}/docs/MCPTROTTER_MEDIUM.md +0 -0
  13. {mcppt-1.0.0 → mcppt-1.0.1}/docs/mcptrotter.jpeg +0 -0
  14. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/checks.py +0 -0
  15. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/cli.py +0 -0
  16. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/core.py +0 -0
  17. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/report.py +0 -0
  18. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/server.py +0 -0
  19. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/shell.py +0 -0
  20. {mcppt-1.0.0 → mcppt-1.0.1}/mcppt/tui.py +0 -0
  21. {mcppt-1.0.0 → mcppt-1.0.1}/requirements.txt +0 -0
  22. {mcppt-1.0.0 → mcppt-1.0.1}/smoke_test.py +0 -0
  23. {mcppt-1.0.0 → mcppt-1.0.1}/test_report.md +0 -0
  24. {mcppt-1.0.0 → mcppt-1.0.1}/test_server.log +0 -0
  25. {mcppt-1.0.0 → mcppt-1.0.1}/test_server.py +0 -0
  26. {mcppt-1.0.0 → mcppt-1.0.1}/tests/__init__.py +0 -0
  27. {mcppt-1.0.0 → mcppt-1.0.1}/tests/test_checks.py +0 -0
  28. {mcppt-1.0.0 → mcppt-1.0.1}/tests/test_core.py +0 -0
  29. {mcppt-1.0.0 → mcppt-1.0.1}/vuln_server.py +0 -0
  30. {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.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
- <b>28 automated security checks for any MCP server.<br>Pure Python. No AI key needed. No Docker. No Kali.</b>
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+. Core scanner uses only stdlib — `urllib`, `ssl`, `json`. `rich` is for the TUI shell only.
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
- <b>28 automated security checks for any MCP server.<br>Pure Python. No AI key needed. No Docker. No Kali.</b>
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+. Core scanner uses only stdlib — `urllib`, `ssl`, `json`. `rich` is for the TUI shell only.
52
+ Requires Python 3.10+.
46
53
 
47
54
  ---
48
55
 
@@ -0,0 +1 @@
1
+ __version__ = "1.0.1"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "mcppt"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "MCPTROTTER — MCP Pentest Tool: 28 automated security checks for MCP servers"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -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