@pactosigna/mcp-server 0.1.12 → 0.1.13
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/dist/index.js +3 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21850,9 +21850,8 @@ var REQUIRED_SECTIONS = {
|
|
|
21850
21850
|
audit_report: ["Scope", "Methodology", "Findings", "Conclusion"],
|
|
21851
21851
|
management_review: ["Review Inputs", "Review Outputs", "Action Items", "Decisions"],
|
|
21852
21852
|
hazard_category: ["Description", "Examples", "Applicable Standards"],
|
|
21853
|
-
|
|
21854
|
-
|
|
21855
|
-
usability_risk: ["Harm Assessment"],
|
|
21853
|
+
// Risk document body sections use BODY_FORMAT heading_pattern (## HARM-XXX via HS-XXX),
|
|
21854
|
+
// not a literal "Harm Assessment" heading. Validation is via BODY_FORMAT, not here.
|
|
21856
21855
|
haz_soe_software: ["Intended Function", "Failure Cause", "Failure Mode", "Failure Effect"],
|
|
21857
21856
|
haz_soe_security: [
|
|
21858
21857
|
"STRIDE Category & Threat",
|
|
@@ -25895,7 +25894,7 @@ var client = new PactoSignaApiClient({
|
|
|
25895
25894
|
apiKey: PACTOSIGNA_API_KEY
|
|
25896
25895
|
});
|
|
25897
25896
|
var server = new Server(
|
|
25898
|
-
{ name: "pactosigna", version: "0.1.
|
|
25897
|
+
{ name: "pactosigna", version: "0.1.13" },
|
|
25899
25898
|
{ capabilities: { tools: {} } }
|
|
25900
25899
|
);
|
|
25901
25900
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
package/package.json
CHANGED