From domotz
Manages Domotz network operations: triggers scans, lists SNMP data and open ports, runs speed tests, supports topology discovery via API calls.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin domotzThis skill uses the workspace's default tool permissions.
Domotz provides comprehensive network monitoring capabilities through its agents. This includes network device discovery, SNMP polling for hardware metrics, TCP port monitoring, speed tests for bandwidth measurement, and network topology mapping.
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 provides comprehensive network monitoring capabilities through its agents. This includes network device discovery, SNMP polling for hardware metrics, TCP port monitoring, speed tests for bandwidth measurement, and network topology mapping.
Domotz agents periodically scan local network subnets to discover devices. Scans can also be triggered on demand. Discovery uses:
Domotz polls SNMP-enabled devices for operational metrics:
TCP port monitoring checks whether specific services are reachable:
Agents can run bandwidth speed tests to measure:
domotz_scan_network
Parameters:
agent_id -- The agent to run the scan from (required)domotz_list_snmp_data
Parameters:
agent_id -- The agent ID (required)device_id -- The device to get SNMP data for (required)Example response:
[
{
"oid": "1.3.6.1.2.1.2.2.1.10.1",
"label": "ifInOctets (GigabitEthernet0/1)",
"value": "1234567890",
"type": "Counter32",
"last_polled": "2026-03-27T15:00:00Z"
}
]
domotz_list_ports
Parameters:
agent_id -- The agent ID (required)device_id -- The device to check ports for (required)Example response:
[
{
"port": 443,
"protocol": "tcp",
"status": "open",
"service": "https",
"last_checked": "2026-03-27T15:00:00Z"
}
]
domotz_run_speed_test
Parameters:
agent_id -- The agent to run the speed test from (required)Example response:
{
"download_speed": 245.6,
"upload_speed": 48.2,
"latency": 12.4,
"timestamp": "2026-03-27T15:05:00Z"
}
domotz_scan_network to trigger a fresh scandomotz_list_devices to see all discovered devicesdomotz_list_snmp_data for network devicesifInOctets and ifOutOctets countersdomotz_list_ports for a server deviceopencloseddomotz_run_speed_test from the site's agentCause: Agent is busy, offline, or network is very large Solution: Check agent status; wait and retry; reduce scan scope
Cause: Device does not support SNMP, wrong community string, or SNMP not configured Solution: Verify SNMP is enabled on the device; check community string configuration
Cause: Firewall blocking the scan, device offline, or service not running Solution: Verify device is online; check firewall rules; verify service is running