@securityreviewai/security-review-mcp 0.2.12 → 0.2.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.
|
@@ -111,17 +111,15 @@ export function registerProjectTools(server) {
|
|
|
111
111
|
.describe("List of architecture note strings describing the system design."),
|
|
112
112
|
technology_categories: z
|
|
113
113
|
.array(z.object({
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
description: z.string().optional().describe("Description of how this category is used."),
|
|
114
|
+
category_name: z.string().describe("Technology category name (e.g. 'Frontend', 'Database')."),
|
|
115
|
+
items: z.array(z.string()).optional().describe("Tools or technologies within this category."),
|
|
117
116
|
}))
|
|
118
117
|
.optional()
|
|
119
|
-
.describe("Technology categories with optional
|
|
118
|
+
.describe("Technology categories with optional item lists."),
|
|
120
119
|
user_groups: z
|
|
121
120
|
.array(z.object({
|
|
122
121
|
name: z.string().describe("Name of the user group."),
|
|
123
122
|
group_type: z.string().optional().describe("Type of the user group (e.g. 'internal', 'external')."),
|
|
124
|
-
description: z.string().optional().describe("Description of this user group."),
|
|
125
123
|
}))
|
|
126
124
|
.optional()
|
|
127
125
|
.describe("User groups that interact with the project."),
|
|
@@ -131,9 +129,12 @@ export function registerProjectTools(server) {
|
|
|
131
129
|
.describe("Compliance framework names or requirement identifiers (e.g. 'PCI-DSS', 'HIPAA', 'SOC2')."),
|
|
132
130
|
description: z.string().optional().describe("High-level description or purpose of the project profile."),
|
|
133
131
|
language_stacks: z
|
|
134
|
-
.array(z.
|
|
132
|
+
.array(z.object({
|
|
133
|
+
layer: z.string().describe("Stack layer name (e.g. 'frontend', 'backend', 'database')."),
|
|
134
|
+
languages: z.array(z.string()).optional().describe("Languages or frameworks in this layer (e.g. ['TypeScript', 'React'])."),
|
|
135
|
+
}))
|
|
135
136
|
.optional()
|
|
136
|
-
.describe("
|
|
137
|
+
.describe("Language stack nodes, each representing a layer with its languages."),
|
|
137
138
|
},
|
|
138
139
|
}, async ({ project_id, architecture_notes, technology_categories, user_groups, compliance_requirements, description, language_stacks }) => {
|
|
139
140
|
const payload = {};
|