macro_import
Import macros from a specified file into the OPNSense MCP Server, enabling streamlined firewall rule and network management with optional overwrite capability.
Instructions
Import macros from a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
overwrite | No | Overwrite existing macros | |
path | Yes | Import file path |
Input Schema (JSON Schema)
{
"properties": {
"overwrite": {
"default": false,
"description": "Overwrite existing macros",
"type": "boolean"
},
"path": {
"description": "Import file path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}