npx claudepluginhub wyre-technology/msp-claude-plugins --plugin huntressThis skill uses the workspace's default tool permissions.
Organizations in Huntress represent MSP client tenants. Each organization contains agents, incidents, and escalations scoped to that client. This skill covers full CRUD operations for organizations and MSP multi-tenant management patterns.
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.
Organizations in Huntress represent MSP client tenants. Each organization contains agents, incidents, and escalations scoped to that client. This skill covers full CRUD operations for organizations and MSP multi-tenant management patterns.
Organizations are the primary tenant boundary in Huntress. Agents, incidents, escalations, and billing are all scoped to organizations.
Each organization has a unique key used during agent installation to associate endpoints with the correct client.
huntress_organizations_list
Parameters:
page_token — Pagination tokenExample response:
{
"organizations": [
{
"id": "org-456",
"name": "Acme Corporation",
"key": "acme_corp",
"agent_count": 150,
"created_at": "2024-01-15T10:00:00Z"
}
],
"next_page_token": "eyJwYWdlIjoyfQ=="
}
huntress_organizations_get
Parameters:
organization_id — The organization IDhuntress_organizations_create
Parameters:
name — Organization display namekey — Unique organization key (used in agent install)Example request:
{
"name": "New Client Inc",
"key": "new_client_inc"
}
huntress_organizations_update
Parameters:
organization_id — The organization IDname — Updated namehuntress_organizations_delete
Parameters:
organization_id — The organization to deleteWARNING: Deleting an organization removes all associated agents and data. This action is irreversible.
huntress_organizations_createhuntress_agents_list filtered by orghuntress_organizations_deletehuntress_organizations_listCause: Organization key already exists Solution: Use a unique key; check existing organizations first
Cause: Invalid organization ID Solution: List organizations to verify the correct ID
Cause: Organization still has agents reporting Solution: Uninstall agents before deleting the organization