macro_start_recording
Initiate API call recording to create reusable automation macros, specifying a name and description for organized macro management within the OPNSense MCP Server.
Instructions
Start recording API calls to create a macro
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Macro description | |
name | Yes | Macro name |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Macro description",
"type": "string"
},
"name": {
"description": "Macro name",
"type": "string"
}
},
"required": [
"name",
"description"
],
"type": "object"
}