create_threat_model
Generate a new threat model with specified details like name, collection ID, and properties to identify and mitigate security risks effectively using the Devici MCP Server.
Instructions
Create a new threat model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
description | No | ||
name | Yes | ||
other_properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"title": "Collection Id",
"type": "string"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"other_properties": {
"title": "other_properties",
"type": "string"
}
},
"required": [
"name",
"collection_id",
"other_properties"
],
"title": "create_threat_modelArguments",
"type": "object"
}