---
name: n-central
description: "Use when the user asks to find a device in N-able N-central, run the morning NOC triage sweep, search across N-central servers, audit custom-property or maintenance-window coverage, check N-central API health or JWT expiry, pull device inventory, or export org-tree data. Wraps the N-central REST API plus an offline SQLite mirror with cross-tenant search. Trigger phrases: `where is this device in n-central`, `triage n-central issues`, `what's red in n-central`, `audit custom properties`, `search across n-central servers`, `check n-central jwt`, `N-central + ChatGPT`, `N-central + Claude`, `use n-central`, `run n-central-cli`."
author: "Damien Stevens"
license: "Apache-2.0"
vendor: "N-able N-central"
argument-hint: "<command> [args] | install cli|mcp"
allowed-tools: "Read Bash"
metadata:
  openclaw:
    requires:
      bins:
        - n-central-cli
---

# N-able N-central Claude Code Skill

## Prerequisites: Install the CLI

This skill drives the `n-central-cli` binary. **You must verify the CLI is installed before invoking any command from this skill.** If it is missing, install it first:

1. macOS / Linux:
   ```bash
   bash <(curl -fsSL https://raw.githubusercontent.com/servosity/msp-skills/main/skills/n-central/install.sh)
   ```
2. Windows (PowerShell):
   ```powershell
   iwr -useb https://raw.githubusercontent.com/servosity/msp-skills/main/skills/n-central/install.ps1 | iex
   ```
3. Verify: `n-central-cli --version`
4. Ensure `~/.local/bin` (macOS / Linux) or `%LOCALAPPDATA%\Programs\msp-skills` (Windows) is on `$PATH`.

If `--version` reports "command not found" after install, the install step did not put the binary on `$PATH`. Do not proceed with skill commands until verification succeeds.

A single cross-platform binary for N-able N-central. It mirrors service orgs, customers, sites, devices, active issues, and custom properties into local SQLite so you can search and SQL across every tenant offline. It matches the 87-tool community MCP server's REST coverage and beats it with `fanout` cross-server search, `triage` issue rollups, `props audit` custom-property coverage, and a `guardian` that kills the silent JWT/password-expiry outage.

## When to Use This CLI

Use this CLI when you operate one or more N-able N-central servers and need to query, audit, or script across your whole device/customer estate from the terminal or an agent. It is the right choice for cross-tenant search, active-issue triage, custom-property coverage audits, maintenance-window gap checks, and pre-empting JWT/password-expiry outages  -  work that the web console and the per-call API make tedious or impossible.

## Unique Capabilities

These capabilities aren't available in any other tool for this API.

### Cross-tenant intelligence

- **`fanout`**  -  Search every configured N-central server at once  -  find a device, customer, or active issue across all your tenants without clicking through each console.

  _Reach for this when an MSP runs more than one N-central server and needs one answer across all of them._

  ```bash
  n-central-cli fanout "backup failed" --agent
  ```
- **`triage`**  -  Group active monitoring issues by customer, device, or monitor type and rank by severity  -  the daily NOC sweep as one command.

  _Reach for this to start a shift with one ranked view instead of per-customer Active Issues screens._

  ```bash
  n-central-cli triage --by customer --agent
  ```
- **`whereis`**  -  Given a device name fragment, return its full path  -  server, service org, customer, site  -  plus its current active-issue count.

  _Reach for this when a ticket names a device but not which customer or server it lives on._

  ```bash
  n-central-cli whereis DC01 --agent
  ```

### Local state that compounds

- **`props audit`**  -  Report which devices are missing a required custom-property value, as a coverage percentage grouped by customer.

  _Reach for this when custom properties drive automation and you need coverage, not a manual CSV spot-check._

  ```bash
  n-central-cli props audit --required BackupTier --agent
  ```
- **`maint coverage`**  -  List devices and sites with no maintenance window before a reboot/patch wave, so nothing reboots in business hours.

  _Reach for this before a patch wave to find the blind spots the per-device view can't show._

  ```bash
  n-central-cli maint coverage --before 2026-06-15 --agent
  ```

### Reachability mitigation

- **`guardian`**  -  Validate the access token, warn when the API user's password (and thus the JWT) is about to expire, and detect N-central's HTTP-200-with-error-body failures.

  _Reach for this in CI or a cron check so a silent JWT expiry never takes your integrations down at day 90._

  ```bash
  n-central-cli guardian --password-set 2026-03-01
  ```

## Command Reference

**access-groups**  -  Access groups (device-type and org-unit-type).

- `n-central-cli access-groups <accessGroupId>`  -  Retrieve detailed information for an access group by ID.

**customers**  -  Customers (client organizations) in N-central.

- `n-central-cli customers get`  -  Retrieve a single customer by ID.
- `n-central-cli customers list`  -  List all customers across the instance.
- `n-central-cli customers registration-token`  -  Retrieve the agent registration token for a customer (used to enroll new devices).

**device-filters**  -  Saved device filters (reusable as filterId on device list calls).

- `n-central-cli device-filters`  -  List saved device filters for the API user.

**devices**  -  Devices monitored by N-central (workstations, servers, network devices, probes).

- `n-central-cli devices assets`  -  Retrieve hardware/software asset inventory for a device.
- `n-central-cli devices get`  -  Retrieve a single device by ID.
- `n-central-cli devices list`  -  List all devices visible to the API user, across the org tree.
- `n-central-cli devices maintenance`  -  List patch maintenance windows configured for a device.
- `n-central-cli devices properties`  -  List custom property values for a device (the backbone of MSP automation/documentation).
- `n-central-cli devices status`  -  Retrieve the service-monitoring status (active issues / health) for a device.
- `n-central-cli devices tasks`  -  List scheduled/automation tasks targeting this device.

**org-units**  -  Organization units  -  the unified tree of service orgs, customers, and sites.

- `n-central-cli org-units access-groups`  -  List access groups for an org unit.
- `n-central-cli org-units active-issues`  -  Fetch active monitoring issues for an org unit (the daily NOC triage feed).
- `n-central-cli org-units children`  -  List the direct children of an org unit.
- `n-central-cli org-units devices`  -  List devices scoped to a specific org unit.
- `n-central-cli org-units get`  -  Retrieve a single org unit by ID.
- `n-central-cli org-units job-statuses`  -  Fetch job statuses for an org unit.
- `n-central-cli org-units list`  -  List all organization units (SO, customer, and site nodes).
- `n-central-cli org-units registration-token`  -  Retrieve the agent registration token for an org unit.
- `n-central-cli org-units user-roles`  -  List user roles defined for an org unit.

**scheduled-tasks**  -  Scheduled tasks  -  run scripts/automation policies on devices and track them.

- `n-central-cli scheduled-tasks get`  -  Retrieve general information for a scheduled task.
- `n-central-cli scheduled-tasks run`  -  Create a direct-support scheduled task (run an Automation Policy, Script, or MacScript on a device).
- `n-central-cli scheduled-tasks status`  -  Retrieve aggregated status for a scheduled task.

**server**  -  Server info and health.

- `n-central-cli server health`  -  Return the start and current time of the server (lightweight reachability check).
- `n-central-cli server get`  -  Return version information for the N-central API service and systems.

**service-orgs**  -  Service Organizations  -  the top level of the N-central org tree.

- `n-central-cli service-orgs customers`  -  List all customers under a service organization.
- `n-central-cli service-orgs get`  -  Retrieve a single service organization by ID.
- `n-central-cli service-orgs list`  -  List all service organizations.

**sites**  -  Sites  -  the leaf org-unit level under customers.

- `n-central-cli sites get`  -  Retrieve a single site by ID.
- `n-central-cli sites list`  -  List all sites across the instance.

**users**  -  N-central users.

- `n-central-cli users`  -  List N-central users.


### Finding the right command

When you know what you want to do but not which command does it, ask the CLI directly:

```bash
n-central-cli which "<capability in your own words>"
```

`which` resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code `0` means at least one match; exit code `2` means no confident match  -  fall back to `--help` or use a narrower query.

## Recipes


### Morning NOC sweep across customers

```bash
n-central-cli triage --by customer --agent
```

One ranked, grouped view of every active issue instead of per-customer console screens.

### Find a device anywhere

```bash
n-central-cli whereis DC01 --agent
```

Resolves a device fragment to server → SO → customer → site with its live issue count.

### Audit a required custom property

```bash
n-central-cli props audit --required BackupTier --agent --select customerName,coveragePct
```

Per-customer coverage of a property that drives automation, narrowed to the two fields that matter.

### Pre-patch maintenance-window check

```bash
n-central-cli maint coverage --before 2026-06-15 --agent
```

Lists devices/sites with no window before the reboot wave.

### Guard against silent JWT expiry in CI

```bash
n-central-cli guardian --password-set 2026-03-01 --agent
```

Exits non-zero when the token is invalid or the password is near expiry  -  wire it into a cron/CI check.

## Auth Setup

Authentication uses an N-central API-only user's JSON Web Token. Generate it in N-central (Administration → User Management → Users → API Access → Generate JSON Web Token; MFA must be OFF). Set NCENTRAL_JWT and your tenant base URL N_CENTRAL_BASE_URL (e.g. https://yourmsp.ncod.n-able.com/api). The CLI exchanges the long-lived JWT for a short-lived access token via POST /api/auth/authenticate and auto-refreshes it. Watch the API user's password expiry (default 90 days)  -  it silently invalidates the JWT; `guardian` warns you before it does.

Run `n-central-cli doctor` to verify setup.

## Agent Mode

Add `--agent` to any command. Expands to: `--json --compact --no-input --no-color --yes`.

- **Pipeable**  -  JSON on stdout, errors on stderr
- **Filterable**  -  `--select` keeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:

  ```bash
  n-central-cli access-groups 550e8400-e29b-41d4-a716-446655440000 --agent --select id,name,status
  ```
- **Previewable**  -  `--dry-run` shows the request without sending
- **Offline-friendly**  -  sync/search commands can use the local SQLite store when available
- **Non-interactive**  -  never prompts, every input is a flag
- **Explicit retries**  -  use `--idempotent` only when an already-existing create should count as success

### Response envelope

Commands that read from the local store or the API wrap output in a provenance envelope:

```json
{
  "meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
  "results": <data>
}
```

Parse `.results` for data and `.meta.source` to know whether it's live or local. A human-readable `N results (live)` summary is printed to stderr only when stdout is a terminal AND no machine-format flag (`--json`, `--csv`, `--compact`, `--quiet`, `--plain`, `--select`) is set  -  piped/agent consumers and explicit-format runs get pure JSON on stdout.

## Agent Feedback

When you (or the agent) notice something off about this CLI, record it:

```
n-central-cli feedback "the --since flag is inclusive but docs say exclusive"
n-central-cli feedback --stdin < notes.txt
n-central-cli feedback list --json --limit 10
```

Entries are stored locally at `~/.local/share/n-central-cli/feedback.jsonl`. They are never POSTed unless `N_CENTRAL_FEEDBACK_ENDPOINT` is set AND either `--send` is passed or `N_CENTRAL_FEEDBACK_AUTO_SEND=true`. Default behavior is local-only.

Write what *surprised* you, not a bug report. Short, specific, one line: that is the part that compounds.

## Output Delivery

Every command accepts `--deliver <sink>`. The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:

| Sink | Effect |
|------|--------|
| `stdout` | Default; write to stdout only |
| `file:<path>` | Atomically write output to `<path>` (tmp + rename) |
| `webhook:<url>` | POST the output body to the URL (`application/json` or `application/x-ndjson` when `--compact`) |

Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.

## Named Profiles

A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.

```
n-central-cli profile save briefing --json
n-central-cli --profile briefing access-groups 550e8400-e29b-41d4-a716-446655440000
n-central-cli profile list --json
n-central-cli profile show briefing
n-central-cli profile delete briefing --yes
```

Explicit flags always win over profile values; profile values win over defaults. `agent-context` lists all available profiles under `available_profiles` so introspecting agents discover them at runtime.

## Async Jobs

For endpoints that submit long-running work, the generator detects the submit-then-poll pattern (a `job_id`/`task_id`/`operation_id` field in the response plus a sibling status endpoint) and wires up three extra flags on the submitting command:

| Flag | Purpose |
|------|---------|
| `--wait` | Block until the job reaches a terminal status instead of returning the job ID immediately |
| `--wait-timeout` | Maximum wait duration (default 10m, 0 means no timeout) |
| `--wait-interval` | Initial poll interval (default 2s; grows with exponential backoff up to 30s) |

Use async submission without `--wait` when you want to fire-and-forget; use `--wait` when you want one command to return the finished artifact.

## Exit Codes

| Code | Meaning |
|------|---------|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 4 | Authentication required |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |

## Argument Parsing

Parse `$ARGUMENTS`:

1. **Empty, `help`, or `--help`** → show `n-central-cli --help` output
2. **Starts with `install`** → ends with `mcp` → MCP installation; otherwise → see Prerequisites above
3. **Anything else** → Direct Use (execute as CLI command with `--agent`)

## MCP Server Installation

The installer above drops `n-central-mcp` alongside the CLI. Register it:

```bash
claude mcp add n-central-mcp -- n-central-mcp
```

Verify: `claude mcp list`

## Direct Use

1. Check if installed: `which n-central-cli`
   If not found, offer to install (see Prerequisites at the top of this skill).
2. Match the user query to the best command from the Unique Capabilities and Command Reference above.
3. Execute with the `--agent` flag:
   ```bash
   n-central-cli <command> [subcommand] [args] --agent
   ```
4. If ambiguous, drill into subcommand help: `n-central-cli <command> --help`.
