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 domotzThis skill uses the workspace's default tool permissions.
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.
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 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