Help us improve
Share bugs, ideas, or general feedback.
From huntress
Manages Huntress organizations via CRUD API operations: list, get, create, update, delete. Handles MSP multi-tenancy for client onboarding, offboarding, and audits.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin huntressHow this skill is triggered — by the user, by Claude, or both
Slash command
/huntress:organizationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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 NinjaOne organizations: creates, lists, configures locations, policy mappings, and node approvals for MSP client device containers.
Manages IT Glue organizations: create, search, update, and handle client documentation including types, statuses, parent/child relationships, PSA sync, quick notes, and related configs, contacts, passwords.
Share bugs, ideas, or general feedback.
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