Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Review a HaloPSA / HaloITSM asset (Device) with its related tickets and CMDB/CI relationships — read-only. Use when investigating a Halo asset, checking a device's ticket history, mapping CI dependencies, or gathering asset context before a change.
.claude/skills/automateyournetwork-halo-asset-context/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 130% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 157% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 49% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 78% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 145% | 0% |
Review an asset in Halo together with the tickets and CMDB/CI relationships around it — entirely read-only. Halo is HaloPSA / HaloITSM (the same product and REST API); assets are called "Devices" in Halo's API vocabulary. Use this to build a full operational picture of a device before acting on it, correlating its history and dependencies.
halo-mcp (NetClaw-authored, mcp-servers/halo-mcp/)python3 -u mcp-servers/halo-mcp/halo_mcp_server.py (stdio transport)HALO_CLIENT_ID / HALO_CLIENT_SECRET against HALO_BASE_URLfastmcp, httpx, python-dotenvhalo_create_change_request, in the halo-change-request skill). Every tool in this skill is read-only and makes no changes to Halo.| Tool | Parameters | What It Does | |------|------------|--------------| | halo_list_assets | customer?, assettype_id?, search? | List/search assets ("Devices"), optionally scoped by customer, asset type, or free text | | halo_get_asset | asset (name / inventory-number / id) | Read one asset — detail, fields, and ticket counts | | halo_get_asset_tickets | asset, open_only? | List the tickets related to an asset — the core context tool | | halo_get_asset_relationships | asset | An asset's CMDB/CI hierarchy and relationship context | | halo_list_clients | search? | Resolve a Halo Client name to its id (the customer param) | | halo_list_sites | customer?, search? | Narrow to a site within a client |
halo_list_assets / halo_get_asset accept an asset name, inventory number, or numeric id — you do not need the id up front.customer param (a client name or id); the server resolves it to a client_id. In an MSP (HaloPSA) tenant this is essential to avoid crossing client boundaries.halo_get_asset_tickets, and relationships (what this device depends on or supports) via halo_get_asset_relationships. Use both for a complete picture.Review an asset and everything around it:
halo_list_assets(customer="<client>", search="<name/serial/model>") Scope by customer (the Halo Client) in multi-client tenants to disambiguate.
halo_get_asset(asset="<name / inventory number / id>") Note its type, key fields, owning client/site, and ticket counts.
halo_get_asset_tickets(asset="<asset>") # all history halo_get_asset_tickets(asset="<asset>", open_only=true) # active issues only Look for recurring faults, recent changes, and open work.
halo_get_asset_relationships(asset="<asset>") Understand upstream dependencies and downstream impact before anyone touches it.
| Skill | Integration | |-------|-------------| | gait-session-tracking | Mandatory. Record every asset/ticket/relationship query in the GAIT audit trail | | halo-change-request | Hand off here when the review concludes a change is warranted — pass the affected asset into the asset param | | halo-ticket-context | Drill into any individual ticket surfaced by halo_get_asset_tickets for its full action history | | nautobot-sot / netbox-reconcile | Cross-reference Halo's asset record against the network source of truth; ticket any drift | | memory | Recall prior findings about the same device across sessions |
| Variable | Required | Description | |----------|----------|-------------| | HALO_BASE_URL | Yes | Halo host, e.g. https://<tenant>.halopsa.com | | HALO_CLIENT_ID | Yes | OAuth2 client-credentials application id | | HALO_CLIENT_SECRET | Yes | OAuth2 client secret | | HALO_TENANT | Optional | Tenant identifier | | HALO_SCOPE | Optional | OAuth2 scope (default all) | | HALO_AUTH_URL | Optional | Override the auth-server URL for self-hosted layouts | | HALO_VERIFY_SSL | Optional | true/false TLS verification (default true) | | HALO_TIMEOUT | Optional | Per-request timeout in seconds (default 30) | | HALO_PAGE_SIZE / HALO_MAX_PAGES | Optional | Pagination tuning (defaults 50 / 20) | | HALO_RATE_LIMIT | Optional | Requests/minute cap (0 = disabled) |
halo-mcp server is halo_create_change_request (halo-change-request skill).customer param to keep queries inside client boundaries — critical in MSP (HaloPSA) tenants.Other measured skills in the registry, with their headline benchmark lift.