From huntress
Retrieves Huntress billing reports with per-organization agent counts and summary reports on incidents/escalations for MSP invoicing and client security reviews.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin huntressThis skill uses the workspace's default tool permissions.
Huntress provides billing and summary reports for MSP partners. Billing reports detail per-organization agent counts for invoicing, while summary reports provide security posture overviews for client-facing communications.
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 provides billing and summary reports for MSP partners. Billing reports detail per-organization agent counts for invoicing, while summary reports provide security posture overviews for client-facing communications.
Billing reports show agent counts per organization for a billing period. Use these for client invoicing and cost reconciliation.
Summary reports provide security posture overviews including incidents detected, escalations raised, and overall threat landscape — ideal for client QBRs and monthly security reviews.
huntress_billing_reports_list
Parameters:
page_token — Pagination tokenExample response:
{
"billing_reports": [
{
"id": "bill-2026-02",
"period": "2026-02",
"generated_at": "2026-03-01T00:00:00Z",
"total_agents": 1250,
"organization_count": 45
}
],
"next_page_token": null
}
huntress_billing_reports_get
Parameters:
report_id — The billing report IDExample response:
{
"billing_report": {
"id": "bill-2026-02",
"period": "2026-02",
"organizations": [
{
"id": "org-456",
"name": "Acme Corporation",
"agent_count": 150
},
{
"id": "org-789",
"name": "TechStart Inc",
"agent_count": 75
}
],
"total_agents": 1250
}
}
huntress_summary_reports_list
Parameters:
page_token — Pagination tokenhuntress_summary_reports_get
Parameters:
report_id — The summary report IDExample response:
{
"summary_report": {
"id": "sum-2026-02",
"period": "2026-02",
"total_incidents": 23,
"total_escalations": 5,
"incidents_by_severity": {
"critical": 2,
"high": 8,
"low": 13
},
"top_threat_categories": [
"Persistent Footholds",
"Malicious Scripts",
"Unauthorized Access"
]
}
}
huntress_billing_reports_listCause: Report for the specified period hasn't been generated yet Solution: Check available reports with the list endpoint first
Cause: Account is new or billing hasn't been processed yet Solution: Reports are typically generated monthly; wait for the billing cycle