MCP Hub
Back to servers

mcp-ninjaone

An MCP server that connects AI assistants to the NinjaOne remote monitoring and management platform via the REST API v2. It provides tools for device inventory, organization management, alert handling, maintenance scheduling, and automated job execution.

Updated
Feb 27, 2026

mcp-ninjaone

A Model Context Protocol (MCP) server for NinjaOne (formerly NinjaRMM), providing AI assistants with full access to remote monitoring and management through the NinjaOne REST API v2.

Features

19 tools across five categories:

Device Management

ToolDescription
list_devicesList all managed devices with online status, OS, organization, and last contact
get_deviceGet detailed device info including hardware, agent version, and network details
get_device_activitiesGet recent activity log for a device (alerts, scripts, status changes)
get_device_os_patch_statusView pending, installed, and failed OS patches for a device
get_device_softwareList all installed software on a device
get_device_processor_infoGet CPU/processor details for a device
get_device_disksGet disk/storage info including capacity and free space

Organizations

ToolDescription
list_organizationsList all organizations (clients/customers) with ID, name, and node count
get_organizationGet detailed organization info including contacts, tags, and policy assignments
list_organization_devicesList all devices belonging to a specific organization
get_organization_locationsGet configured locations for an organization
get_organization_policiesGet policy assignments for an organization

Alerts & Conditions

ToolDescription
list_alertsList active alerts across all devices, filterable by severity
list_device_alertsList all active alerts for a specific device
reset_alertReset (acknowledge and clear) an active alert by its UID
list_alert_conditionsList all configured alert trigger conditions

Maintenance Windows

ToolDescription
list_maintenance_windowsList all scheduled maintenance windows
create_maintenance_windowCreate a maintenance window for a device to suppress alerts
cancel_device_maintenanceCancel an active maintenance window to re-enable alerting

Jobs & Automation

ToolDescription
list_running_jobsList currently running jobs across all devices
get_device_jobsGet all jobs (running, completed, failed) for a specific device
run_script_on_deviceExecute a saved script on a device

Installation

git clone git@github.com:fredriksknese/mcp-ninjaone.git
cd mcp-ninjaone
npm install
npm run build

Configuration

The server is configured via environment variables:

VariableRequiredDescription
NINJAONE_CLIENT_IDYesOAuth2 client ID from NinjaOne API credentials
NINJAONE_CLIENT_SECRETYesOAuth2 client secret from NinjaOne API credentials
NINJAONE_INSTANCEYesNinjaOne instance hostname (see table below)

Instance Hostnames

RegionHostname
USapp.ninjarmm.com
EUeu.ninjarmm.com
Oceaniaoc.ninjarmm.com
Canadaca.ninjarmm.com

Creating API Credentials

  1. Log in to your NinjaOne instance
  2. Navigate to Administration > Apps > API
  3. Click Add to create a new API application
  4. Select Client Credentials as the authorization flow
  5. Grant the required scopes: monitoring, management, control, offline_access
  6. Copy the Client ID and Client Secret

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ninjaone": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-ninjaone/dist/index.js"],
      "env": {
        "NINJAONE_CLIENT_ID": "your-client-id",
        "NINJAONE_CLIENT_SECRET": "your-client-secret",
        "NINJAONE_INSTANCE": "app.ninjarmm.com"
      }
    }
  }
}

Usage with Claude Code

Add to your Claude Code MCP settings:

claude mcp add ninjaone -- node /absolute/path/to/mcp-ninjaone/dist/index.js

Set the required environment variables before running, or configure them in your MCP settings.

Example Prompts

Once connected, you can ask your AI assistant things like:

  • "Show me all devices that are currently offline"
  • "What active alerts do we have across all organizations?"
  • "Put device 1234 into maintenance mode for the next 2 hours"
  • "List all devices for the Acme Corp organization"
  • "What software is installed on device 5678?"
  • "Show me recent activity for device 1234"
  • "Run the cleanup script on device 9012"
  • "What jobs are currently running across all devices?"
  • "Reset all minor alerts for device 1234"
  • "What patches are pending on device 5678?"

Development

npm run dev      # Run with tsx (auto-reloads)
npm run build    # Compile TypeScript to dist/
npm start        # Run compiled output

Architecture

src/
├── index.ts                # Entry point — creates MCP server + STDIO transport
├── ninjaone-client.ts      # HTTP client with OAuth2 client credentials flow
└── tools/
    ├── devices.ts          # Device management and inventory (7 tools)
    ├── organizations.ts    # Organization/client management (5 tools)
    ├── alerts.ts           # Alert monitoring and acknowledgement (4 tools)
    ├── maintenance.ts      # Maintenance window management (3 tools)
    └── jobs.ts             # Job execution and monitoring (3 tools)

The client handles OAuth2 token lifecycle automatically — tokens are fetched on first use and refreshed when they expire (typically after 1 hour).

Requirements

  • Node.js 18+
  • NinjaOne account with API access enabled

License

SEE LICENSE IN LICENSE

Reviews

No reviews yet

Sign in to write a review