Skip to main content
Glama

delete_target

Remove a target from Intruder.IO by specifying its ID. This action permanently deletes the selected target from the security testing platform.

Instructions

Delete a target. Args: target_id: The ID of the target to delete

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
target_idYes

Implementation Reference

  • The MCP tool handler for 'delete_target', registered via @mcp.tool() decorator. It calls the API client to delete the target by ID and returns a confirmation message.
    @mcp.tool() async def delete_target(target_id: str) -> str: """ Delete a target. Args: target_id: The ID of the target to delete """ api.delete_target(target_id) return f"Deleted target {target_id}"
  • Supporting method in IntruderAPI class that sends HTTP DELETE request to the Intruder API to delete the specified target.
    def delete_target(self, target_id: str) -> None: self.client.delete(f"{self.base_url}/targets/{target_id}/")

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/intruder-io/intruder-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server