Nessus MCP Server

A Model Context Protocol (MCP) server for interacting with the Tenable Nessus vulnerability scanner. This server allows AI assistants to perform

Local serverstdioTypeScript

What is the Nessus MCP server?

A Model Context Protocol (MCP) server for interacting with the Tenable Nessus vulnerability scanner. This server allows AI assistants to perform vulnerability scanning and analysis through the MCP protocol. The nessus mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 8 defined tools rather than through you.

What it actually does

  • Vulnerability Scanning — Start and monitor vulnerability scans against specified targets
  • Scan Management — List, track, and retrieve results from vulnerability scans
  • Vulnerability Analysis — Search for and get detailed information about specific vulnerabilities
  • Mock Mode — Fully functional mock mode for testing without a Nessus API key

Its toolset

Everything the assistant can do here goes through one of these:

  • list_scan_templates — List available Nessus scan templates
  • start_scan — Start a new vulnerability scan against a target
  • get_scan_status — Check the status of a running scan
  • get_scan_results — Get the results of a completed scan
  • list_scans — List all scans and their status
  • get_vulnerability_details — Get detailed information about a specific vulnerability
  • search_vulnerabilities — Search for vulnerabilities by keyword
  • Prerequisites — The Prerequisites tool exposed by this server

Configuration

You will need 3 environment variables: NESSUS_URL, NESSUS_ACCESS_KEY, NESSUS_SECRET_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 16 or higher - TypeScript (for development)

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Nessus's toolset — list_scan_templates, start_scan, get_scan_status and 5 more — is a fair guide to whether it matches your workflow. It is maintained by Cyreslab-AI; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the nessus mcp server does with a few real requests.

Available tools

ToolWhat it does
list_scan_templatesList available Nessus scan templates
start_scanStart a new vulnerability scan against a target
get_scan_statusCheck the status of a running scan
get_scan_resultsGet the results of a completed scan
list_scansList all scans and their status
get_vulnerability_detailsGet detailed information about a specific vulnerability
search_vulnerabilitiesSearch for vulnerabilities by keyword
PrerequisitesThe Prerequisites tool exposed by this server.

How to install the Nessus MCP server

{
  "mcpServers": {
    "nessus": {
      "command": "node",
      "args": ["/path/to/nessus-mcp-server/build/index.js"],
      "env": {
        "NESSUS_URL": "https://your-nessus-instance:8834",
        "NESSUS_ACCESS_KEY": "your-access-key",
        "NESSUS_SECRET_KEY": "your-secret-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 16 or higher - TypeScript (for development)
VariableDescriptionRequired
NESSUS_URLEndpoint or connection string the server talks to.Yes
NESSUS_ACCESS_KEYCredential the server authenticates with.Yes
NESSUS_SECRET_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Nessus to list scan templates.
  • Use Nessus to start scan.
  • Use Nessus to get scan status.

Frequently asked questions

It connects Nessus to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (list_scan_templates, start_scan, get_scan_status, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Nessus directly.