Help us improve
Share bugs, ideas, or general feedback.
From domotz
Manages Domotz agents (collectors), sites, and network probes: lists agents, checks health and status, views details, monitors connectivity.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin domotzHow this skill is triggered — by the user, by Claude, or both
Slash command
/domotz:agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Domotz agents (also called collectors or probes) are software or hardware appliances deployed at customer sites that perform network discovery, device monitoring, and data collection. Each agent represents a monitored site/location and is the entry point for all device and network operations.
Lists Domotz network devices, searches by name/IP/MAC, checks status, views details, and supports network topology understanding for inventory management.
Manages Atera RMM agents by listing, searching, monitoring status, executing PowerShell commands, and handling lifecycle on managed endpoints for MSP technicians.
Manages Blumira agents and devices: lists inventory with filters and pagination, checks health via last_seen timestamps, audits coverage by OS/status, handles deployment keys.
Share bugs, ideas, or general feedback.
Domotz agents (also called collectors or probes) are software or hardware appliances deployed at customer sites that perform network discovery, device monitoring, and data collection. Each agent represents a monitored site/location and is the entry point for all device and network operations.
Agents are deployed at customer sites and maintain a persistent connection to the Domotz cloud. Each agent:
| Status | Meaning |
|---|---|
ONLINE | Agent is connected and reporting |
OFFLINE | Agent is not connected to the cloud |
domotz_list_agents
Returns all agents associated with your account.
Example response:
[
{
"id": 12345,
"display_name": "Acme Corp - Main Office",
"status": {
"value": "ONLINE"
},
"license": {
"bound_devices": 47
},
"location": {
"latitude": 40.7128,
"longitude": -74.0060
},
"last_seen": "2026-03-27T15:30:00Z"
}
]
domotz_get_agent
Parameters:
agent_id -- The specific agent IDExample response:
{
"id": 12345,
"display_name": "Acme Corp - Main Office",
"status": {
"value": "ONLINE"
},
"license": {
"bound_devices": 47,
"allowed_devices": 100
},
"access_right": {
"api_enabled": true
},
"creation_time": "2025-01-15T10:00:00Z",
"last_seen": "2026-03-27T15:30:00Z"
}
domotz_list_agents to get all agentslicense.bound_devices vs license.allowed_devices for capacitydomotz_list_agents to get all sitesdisplay_name, status, and bound device countbound_devices to allowed_devices for eachCause: Invalid agent ID or agent has been deleted Solution: Verify the agent ID; check if the site was decommissioned
Cause: Network connectivity issue, agent service stopped, or hardware failure Solution: Check site connectivity; verify agent service is running; contact site contact
Cause: No agents deployed or API key has limited scope Solution: Verify API key permissions; check Domotz Portal for agent list
last_seen timestamps to detect offline agents earlybound_devices vs allowed_devices for license planningdisplay_name consistently with client site names in your PSA