drio
Open app

Ninja MCP Server

Source

A comprehensive integration platform for NinjaRMM API for MCP servers

Catalog onlyCatalog onlySTDIO

Overview

Ninja MCP Server is a comprehensive integration platform designed for the NinjaRMM (NinjaOne) API, specifically tailored for Managed Cloud Provider (MCP) servers. It provides PowerShell modules and scripts that enable Managed Service Providers (MSPs) to automate device monitoring, generate reports, and manage their NinjaRMM environment efficiently.

To use Ninja MCP Server, clone the repository to your MCP server, configure your API credentials, create necessary directories, and run the provided example scripts to start monitoring devices and generating reports.

  • Comprehensive API integration with full access to NinjaRMM functionality. - Automated device monitoring for status, alerts, and disk space. - HTML report generation with detailed device statistics. - Configurable email alerts for detected issues. - Extensible architecture for adding custom features. - Compatibility with Managed Cloud Provider (MCP) servers.
  1. Automating device monitoring for MSPs.
  2. Generating detailed reports for client devices.
  3. Sending alerts for critical device issues.
  4. Extending functionality to meet specific business needs.

Add to your AI client

Use these steps to connect Ninja MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "ninjamcpserver-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ninjamcpserver-jasondsmith72"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "ninjamcpserver-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ninjamcpserver-jasondsmith72"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "ninjamcpserver-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ninjamcpserver-jasondsmith72"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "ninjamcpserver-jasondsmith72": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ninjamcpserver-jasondsmith72"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "ninjamcpserver-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ninjamcpserver-jasondsmith72"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "ninjamcpserver-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ninjamcpserver-jasondsmith72"
      ]
    }
  }
}