Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Discover and classify OT / IoT / IoMT assets via Claroty xDome. List devices by site, Purdue level, and device purpose; assign Purdue layers and custom attributes; cross-reference with Nautobot / NetBox SoT to surface drift.
.claude/skills/automateyournetwork-claroty-asset-inventory/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | 3% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 12% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 17% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -20% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -37% | 0% |
OT / IoT / IoMT asset discovery, Purdue Model classification, and source-of-truth reconciliation, using the Claroty xDome MCP server.
claroty-mcp (in-repo, mcp-servers/claroty-mcp/claroty_mcp_server.py)python3 -u mcp-servers/claroty-mcp/claroty_mcp_server.py (stdio transport)CLAROTY_API_TOKENCHG\d+); bypassed in NETCLAW_LAB_MODE=true| Tool | Parameters | What It Does | |------|------------|--------------| | list_devices | site_id?, purdue_level?, device_purpose?, name_contains?, limit?, offset?, max_items? | List xDome-managed devices with rich filters | | get_device_details | device_id | Full record for a single device including raw attributes | | set_device_purdue_level | device_id, purdue_level, cr_number | Write (ITSM-gated) — assign Purdue layer | | set_device_custom_attribute | device_id, attribute_key, attribute_value, cr_number | Write (ITSM-gated) — set a custom attribute |
For cross-referencing, also reach for:
nautobot_get_ip_address / nautobot_get_prefix from the nautobot-sot skillnetbox-reconcile from the NetBox skills"List the first 50 devices at site warehouse-east at Purdue level 1, showing names, vendors, and risk scores"Calls list_devices(site_id="warehouse-east", purdue_level="Level 1", limit=50). Returns a GCF-encoded device table.
"List all PLCs across all sites"Calls list_devices(device_purpose="PLC", max_items=500).
"Set device 7a2c... to Purdue level 2 under CHG0012345"Calls set_device_purdue_level(device_id="7a2c...", purdue_level="Level 2", cr_number="CHG0012345"). The ITSM gate validates the CR before the POST.
"Compare xDome devices at site warehouse-east to Nautobot's inventory for that site and flag anything missing on either side"list_devices(site_id="warehouse-east") → xDome setnautobot_get_ip_address(...) filtered by site → SoT set"Mark device 9f4d... with custom attribute compliance_scope=PCI under CHG0012999"Calls set_device_custom_attribute(device_id="9f4d...", attribute_key="compliance_scope", attribute_value="PCI", cr_number="CHG0012999").
All write tools call validate_change_request(cr_number) from mcp-servers/claroty-mcp/utils/itsm_gate.py. The CR must:
CHG\d+.NETCLAW_LAB_MODE=true).A rejection returns {"itsm_gate": {...}, "applied": false} and the xDome call is NOT made.
If set_device_purdue_level or set_device_custom_attribute returns applied: false and an error object with status_code: 403, the ITSM gate passed and the request body is correct — xDome rejected at RBAC. The token in CLAROTY_API_TOKEN lacks write scope on devices. Don't retry — escalate to whoever provisions xDome API tokens.
Every tool invocation is recorded in GAIT. The audit trail includes the tool name, parameters, CR number (for writes), and the xDome response status.
Other measured skills in the registry, with their headline benchmark lift.