Help us improve
Share bugs, ideas, or general feedback.
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 huntressHow this skill is triggered — by the user, by Claude, or both
Slash command
/huntress:billingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
Generates multi-tenant security and operational reports from LimaCharlie: billing summaries, usage roll-ups, detection trends, sensor health monitoring, configuration audits across organizations.
Guides Huntress MCP tools for threat detection platform: HTTP Basic Auth, API structure, pagination with page tokens, 60 req/min rate limits, error handling, and tools for agents, incidents, organizations.
Manages Blumira MSP multi-tenant operations: lists managed accounts, runs cross-account findings queries, handles per-account devices, users, and findings.
Share bugs, ideas, or general feedback.
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