create_target_tag
Assign tags to specific targets in Intruder.IO using the MCP server by providing the target ID and tag name for improved organization and identification.
Instructions
Add a tag to a target.
Args:
target_id: The ID of the target to add the tag to
name: The name of the tag to add (max 40 characters)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
target_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"target_id": {
"title": "Target Id",
"type": "integer"
}
},
"required": [
"target_id",
"name"
],
"title": "create_target_tagArguments",
"type": "object"
}