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 huntressThis skill uses the workspace's default tool permissions.
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.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Calculates TAM/SAM/SOM using top-down, bottom-up, and value theory methodologies for market sizing, revenue estimation, and startup validation.
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