ci(mcp): add GitHub Actions workflow for PyPI release (#9660)

This commit is contained in:
Rubén De la Torre Vico
2025-12-23 12:27:08 +01:00
committed by GitHub
parent 8ce56b5ed6
commit 6f018183cd
3 changed files with 83 additions and 3 deletions

View File

@@ -5,8 +5,8 @@ This package provides MCP tools for accessing:
- Prowler Hub: All security artifacts (detections, remediations and frameworks) supported by Prowler
"""
__version__ = "0.1.0"
__version__ = "0.3.0"
__author__ = "Prowler Team"
__email__ = "engineering@prowler.com"
__all__ = ["__version__", "prowler_mcp_server"]
__all__ = ["__version__", "__author__", "__email__"]

View File

@@ -14,7 +14,6 @@ requires-python = ">=3.12"
version = "0.3.0"
[project.scripts]
generate-prowler-app-mcp-server = "prowler_mcp_server.prowler_app.utils.server_generator:generate_server_file"
prowler-mcp = "prowler_mcp_server.main:main"
[tool.uv]