Help us improve
Share bugs, ideas, or general feedback.
From runzero
Searches and browses RunZero asset inventory, inspects attributes like OS fingerprinting, hardware details, network interfaces, and classifications.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin runzeroHow this skill is triggered — by the user, by Claude, or both
Slash command
/runzero:assetsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
RunZero discovers and inventories every asset on the network -- servers, workstations, IoT devices, OT systems, cloud instances, and more. Each asset includes OS fingerprinting, hardware details, network interfaces, open services, and a full attribute history. This skill covers searching, filtering, and inspecting assets.
Query SuperOps.ai asset inventory, view details, run scripts, monitor patches, manage client/site associations. Covers statuses, software/disk usage, activity for MSP endpoint management.
Queries SentinelOne unified asset inventory for endpoints, cloud resources, identities, and network-discovered devices using REST API tools with offset pagination, filters, and sorting for MSP audits.
Discovers ICS/OT assets via Claroty xDome using passive monitoring and active queries. Use for initial OT visibility, IEC 62443 audits, or validating asset inventory.
Share bugs, ideas, or general feedback.
RunZero discovers and inventories every asset on the network -- servers, workstations, IoT devices, OT systems, cloud instances, and more. Each asset includes OS fingerprinting, hardware details, network interfaces, open services, and a full attribute history. This skill covers searching, filtering, and inspecting assets.
RunZero classifies assets by type based on fingerprinting:
| Type | Description |
|---|---|
server | Server operating systems |
workstation | Desktop/laptop endpoints |
network | Routers, switches, firewalls |
printer | Network printers and MFPs |
iot | IoT devices (cameras, sensors, etc.) |
ot | Operational technology / ICS |
mobile | Mobile devices |
virtual | Virtual machines and hypervisors |
RunZero performs active and passive OS fingerprinting using multiple techniques:
The result is a confidence-weighted OS identification with vendor, product, and version.
Each asset carries a rich set of attributes:
| Attribute | Description |
|---|---|
addresses | All discovered IP addresses |
macs | MAC addresses |
hostnames | All discovered hostnames |
os | Operating system (fingerprinted) |
os_vendor | OS vendor name |
os_version | OS version string |
hw | Hardware vendor/model |
type | Asset type classification |
first_seen | When the asset was first discovered |
last_seen | When the asset was last seen |
alive | Whether the asset responded to the last scan |
site_id | The site this asset belongs to |
tags | User-assigned tags |
runzero_assets_list
Parameters:
site_id -- Filter by sitesearch -- RunZero query string (e.g., os:Windows)count -- Number of results per page (default 100)offset -- Pagination offsetExample response:
{
"assets": [
{
"id": "asset-uuid-123",
"addresses": ["192.168.1.42"],
"macs": ["00:1A:2B:3C:4D:5E"],
"hostnames": ["ACME-DC01.acme.local"],
"os": "Windows Server 2022",
"os_vendor": "Microsoft",
"type": "server",
"alive": true,
"first_seen": "2026-01-15T10:00:00Z",
"last_seen": "2026-03-27T08:30:00Z",
"site_id": "site-uuid-456"
}
]
}
runzero_assets_search
Parameters:
query -- RunZero query language stringExample queries:
os:Windows AND type:server
address:10.0.0.0/8 AND alive:true
hostname:DC AND os:Windows Server
type:printer AND last_seen:<30d
NOT os:Windows AND alive:true
runzero_assets_get
Parameters:
asset_id -- The specific asset UUIDReturns full asset details including all attributes, services, network interfaces, and scan history.
runzero_assets_export
Parameters:
search -- RunZero query string to filter exportssite_id -- Filter by siteUse the Export API for bulk retrieval of asset data.
runzero_assets_list for each sitealive:false AND last_seen:<30drunzero_assets_exportos_vendor and os fieldsCause: Invalid asset UUID or asset was merged/removed Solution: Verify the asset ID; search by IP or hostname instead
Cause: Query too restrictive or site has not been scanned Solution: Broaden the query; verify the site has completed scans
last_seen to detect assets going offlinetype filtering to focus on specific device categories