From domotz
Lists Domotz network devices, searches by name/IP/MAC, checks status, views details, and supports network topology understanding for inventory management.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin domotzThis skill uses the workspace's default tool permissions.
Domotz automatically discovers and monitors devices on networks where agents are deployed. Devices include servers, workstations, network equipment, IoT devices, printers, and any IP-connected hardware. Each device is associated with a specific agent (site).
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
Domotz automatically discovers and monitors devices on networks where agents are deployed. Devices include servers, workstations, network equipment, IoT devices, printers, and any IP-connected hardware. Each device is associated with a specific agent (site).
Domotz agents continuously scan local networks and automatically discover new devices. Discovered devices are classified by type and can be:
Devices are identified by multiple attributes:
| Status | Meaning |
|---|---|
ONLINE | Device is reachable on the network |
OFFLINE | Device is not responding |
UNKNOWN | Status cannot be determined |
domotz_list_devices
Parameters:
agent_id -- The agent monitoring this network (required)page -- Page number for paginationpage_size -- Results per pageExample response:
[
{
"id": 789,
"display_name": "Core Switch",
"ip_addresses": ["192.168.1.1"],
"hw_address": "AA:BB:CC:DD:EE:FF",
"vendor": "Cisco Systems",
"type": {
"detected_id": 3,
"label": "Network Device"
},
"status": "ONLINE",
"last_status_change": "2026-03-27T10:00:00Z",
"first_seen": "2025-06-15T08:30:00Z"
}
]
domotz_get_device
Parameters:
agent_id -- The agent IDdevice_id -- The specific device IDdomotz_search_devices
Parameters:
agent_id -- The agent IDquery -- Search term (name, IP, or MAC)domotz_search_devices with the IP address as querydomotz_get_device for full details if neededdomotz_search_devices with the MAC address as querydomotz_list_devices with the agent_id for the siteCause: Invalid device ID, device has been removed, or wrong agent Solution: Verify the device ID and agent ID; search by IP or MAC instead
Cause: Agent has not completed initial scan, or no devices on network Solution: Verify agent is online; trigger a network scan; wait for discovery
Cause: Agent is offline or device status hasn't been refreshed Solution: Check agent status; trigger a fresh scan if possible
last_status_change to detect recent outagesvendor field to categorize devices by manufacturerfirst_seen dates to detect new/rogue devices on the network