call_webhook
Initiate a webhook request using specified parameters, including a unique slug, data payload, and authentication token, to integrate with Binalyze AIR MCP Server for digital forensics and incident response workflows.
Instructions
Call a webhook with the specified parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | The data parameter for the webhook (e.g., IP address like "192.168.1.100") | |
slug | Yes | The webhook slug (e.g., "air-generic-url-webhook") | |
token | Yes | The webhook token for authentication |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "The data parameter for the webhook (e.g., IP address like \"192.168.1.100\")",
"type": "string"
},
"slug": {
"description": "The webhook slug (e.g., \"air-generic-url-webhook\")",
"type": "string"
},
"token": {
"description": "The webhook token for authentication",
"type": "string"
}
},
"required": [
"slug",
"data",
"token"
],
"type": "object"
}