aws-security-mcp 0.2.0 → 0.3.1
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.
- package/dashboard/dist/data.json +16 -46
- package/dist/bin/aws-security-mcp.js +4156 -108
- package/dist/bin/aws-security-mcp.js.map +1 -1
- package/dist/src/index.d.ts +4 -1
- package/dist/src/index.js +4054 -4
- package/dist/src/index.js.map +1 -1
- package/package.json +5 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -87,10 +87,13 @@ declare function runAllScanners(scanners: Scanner[], region: string): Promise<Fu
|
|
|
87
87
|
|
|
88
88
|
declare function generateMarkdownReport(scanResults: FullScanResult): string;
|
|
89
89
|
|
|
90
|
+
declare function generateHtmlReport(scanResults: FullScanResult, history?: DashboardHistoryEntry[]): string;
|
|
91
|
+
declare function generateMlps3HtmlReport(scanResults: FullScanResult, history?: DashboardHistoryEntry[]): string;
|
|
92
|
+
|
|
90
93
|
declare function calculateScore(summary: FullScanResult["summary"]): number;
|
|
91
94
|
declare function saveResults(scanResults: FullScanResult, outputDir?: string): string;
|
|
92
95
|
|
|
93
96
|
declare function createServer(defaultRegion: string): McpServer;
|
|
94
97
|
declare function startServer(defaultRegion: string): Promise<void>;
|
|
95
98
|
|
|
96
|
-
export { type DashboardData, type DashboardHistoryEntry, type Finding, type FullScanResult, type Priority, type ScanContext, type ScanResult, type Scanner, type Severity, calculateScore, createServer, generateMarkdownReport, runAllScanners, saveResults, startServer };
|
|
99
|
+
export { type DashboardData, type DashboardHistoryEntry, type Finding, type FullScanResult, type Priority, type ScanContext, type ScanResult, type Scanner, type Severity, calculateScore, createServer, generateHtmlReport, generateMarkdownReport, generateMlps3HtmlReport, runAllScanners, saveResults, startServer };
|