Help us improve
Share bugs, ideas, or general feedback.
From huntress
Manages Huntress endpoint agents: lists and filters by organization or platform, checks health and status, retrieves details for fleet audits and health checks.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin huntressHow this skill is triggered — by the user, by Claude, or both
Slash command
/huntress:agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Huntress agents are lightweight endpoint monitors deployed across MSP client organizations. They collect telemetry and enable Huntress's managed detection and response capabilities. This skill covers listing, filtering, and inspecting agents across your managed fleet.
Manages RocketCyber RocketAgent: deployment, installation, online/offline status, health monitoring, troubleshooting, platform support, and connectivity diagnostics on Windows, macOS, Linux endpoints.
Manages Blumira agents and devices: lists inventory with filters and pagination, checks health via last_seen timestamps, audits coverage by OS/status, handles deployment keys.
Manages Huntress organizations via CRUD API operations: list, get, create, update, delete. Handles MSP multi-tenancy for client onboarding, offboarding, and audits.
Share bugs, ideas, or general feedback.
Huntress agents are lightweight endpoint monitors deployed across MSP client organizations. They collect telemetry and enable Huntress's managed detection and response capabilities. This skill covers listing, filtering, and inspecting agents across your managed fleet.
Agents are installed on endpoints and report back to the Huntress platform. Each agent belongs to an organization and has a status indicating its health and connectivity.
Agents can be filtered by:
huntress_agents_list
Parameters:
organization_id — Filter by organizationpage_token — Pagination token for next pageExample response:
{
"agents": [
{
"id": "agent-123",
"hostname": "ACME-WS-042",
"organization_id": "org-456",
"platform": "windows",
"version": "0.13.25",
"status": "online",
"last_seen_at": "2026-02-26T15:30:00Z"
}
],
"next_page_token": "eyJwYWdlIjoyfQ=="
}
huntress_agents_get
Parameters:
agent_id — The specific agent IDExample response:
{
"agent": {
"id": "agent-123",
"hostname": "ACME-WS-042",
"organization_id": "org-456",
"platform": "windows",
"version": "0.13.25",
"status": "online",
"ip_address": "192.168.1.42",
"external_ip": "203.0.113.50",
"os_version": "Windows 11 23H2",
"last_seen_at": "2026-02-26T15:30:00Z",
"created_at": "2025-06-15T10:00:00Z"
}
}
huntress_agents_list to get all agentshuntress_agents_list with organization_id filterCause: Invalid agent ID or agent has been uninstalled Solution: Verify the agent ID; check if the endpoint was decommissioned
Cause: Organization has no agents deployed, or filter is too restrictive Solution: Verify organization ID; try listing without filters first
last_seen_at to detect offline agents early