Skip to main content
Glama

Panther MCP Server

Official
Apache 2.0
16
  • Apple

update_alert_status

Modify the status of Panther alerts to OPEN, TRIAGED, RESOLVED, or CLOSED using alert IDs. Supports updating single or multiple alerts simultaneously. Returns success status and updated alert details.

Instructions

Update the status of one or more Panther alerts.

Args: alert_ids: List of alert IDs to update. Can be a single ID or multiple IDs. status: The new status for the alerts. Must be one of: - "OPEN": Alert is newly created and needs investigation - "TRIAGED": Alert is being investigated - "RESOLVED": Alert has been investigated and resolved - "CLOSED": Alert has been closed (no further action needed) Returns: Dict containing: - success: Boolean indicating if the update was successful - alerts: List of updated alerts if successful, each containing: - id: The alert ID - status: The new status - updatedAt: Timestamp of the update - message: Error message if unsuccessful Example: # Update a single alert result = await update_alert_status(["alert-123"], "TRIAGED") # Update multiple alerts result = await update_alert_status(["alert-123", "alert-456"], "RESOLVED")

Input Schema

NameRequiredDescriptionDefault
alert_idsYes
statusYes

Input Schema (JSON Schema)

{ "properties": { "alert_ids": { "items": { "type": "string" }, "title": "Alert Ids", "type": "array" }, "status": { "title": "Status", "type": "string" } }, "required": [ "alert_ids", "status" ], "type": "object" }

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/panther-labs/mcp-panther'

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