list_countermeasures
Identify and filter countermeasures for a project by status and page size using the SD Elements MCP Server, enabling efficient security development lifecycle management.
Instructions
List countermeasures for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | Number of results per page (optional) | |
project_id | Yes | The ID of the project | |
status | No | Filter by countermeasure status |
Input Schema (JSON Schema)
{
"properties": {
"page_size": {
"description": "Number of results per page (optional)",
"type": "integer"
},
"project_id": {
"description": "The ID of the project",
"minimum": 1,
"type": "integer"
},
"status": {
"description": "Filter by countermeasure status",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}