anava_capture_analyze
Capture images from Axis cameras and analyze them using AI based on a specified prompt, enabling real-time visual insights and event monitoring through the Anava MCP Server.
Instructions
Capture an image from camera and analyze it with AI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
camera | No | Camera name or use default if not specified | |
channel | No | Camera channel number (default: 1) | |
prompt | Yes | Analysis prompt to send to AI model | |
security_profile | No | Security profile name to use |
Input Schema (JSON Schema)
{
"properties": {
"camera": {
"description": "Camera name or use default if not specified",
"type": "string"
},
"channel": {
"description": "Camera channel number (default: 1)",
"type": "number"
},
"prompt": {
"description": "Analysis prompt to send to AI model",
"type": "string"
},
"security_profile": {
"description": "Security profile name to use",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}