delete_target_tag
Remove a specific tag from a target to manage and organize resources efficiently on the intruder-mcp server. Input target ID and tag name to execute the removal.
Instructions
Remove a tag from a target.
Args:
target_id: The ID of the target to remove the tag from
tag_name: The name of the tag to remove
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tag_name | Yes | ||
target_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"tag_name": {
"title": "Tag Name",
"type": "string"
},
"target_id": {
"title": "Target Id",
"type": "integer"
}
},
"required": [
"target_id",
"tag_name"
],
"title": "delete_target_tagArguments",
"type": "object"
}