tenable-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tenable-mcp-serverlist assets with high severity vulnerabilities"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tenable MCP Server
An MCP (Model Context Protocol) server for Tenable Vulnerability Management and the wider Tenable One platform. Connects LLMs like Claude to your Tenable instance for querying assets, vulnerabilities, scans, exposure metrics, attack paths, web app scans, cloud security findings, and more — via natural language.
Built with FastMCP v3 and pyTenable.
Features
58 tools across 25 modules: assets, vulnerabilities, scans, exposure scoring, Attack Path Analysis, Web App Scanning (WAS), Attack Surface Management (ASM), Cloud Security (CNAPP), container security, compliance, tags, agents, networks, policies, users/groups, audit log, and patch verification
Mock mode for demos and development — full test suite and every tool works with zero credentials
Pagination on all list endpoints with safety caps for large exports
Markdown output optimized for LLM consumption
Graceful degradation when licensed features (Lumin/Tenable One, WAS, CNAPP, ASM) are unavailable
STDIO and HTTP transports supported
Read-mostly surface: the only write operations are scan launch/stop and tag assign/unassign, all marked with MCP tool annotations
Related MCP server: Qualys MCP Server
Quick Start
Prerequisites
Python 3.11+
uv (recommended) or pip
Tenable VM API keys (generate here) — or none at all for mock mode
Install
git clone <repo-url> && cd tenable-mcp-server
uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"Configure
cp .env.example .env
# Edit .env with your Tenable API keysOr export directly:
export TENABLE_ACCESS_KEY=your-access-key
export TENABLE_SECRET_KEY=your-secret-keyRun
# STDIO transport (default, for Claude Desktop / Claude Code)
tenable-mcp
# Mock mode (no API keys needed)
TENABLE_MOCK=true tenable-mcp
# HTTP/SSE transport (binds 127.0.0.1 by default)
tenable-mcp --transport http --port 8000Claude Desktop Integration
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"tenable": {
"command": "uv",
"args": ["run", "--directory", "/path/to/tenable-mcp-server", "tenable-mcp"],
"env": {
"TENABLE_ACCESS_KEY": "your-access-key",
"TENABLE_SECRET_KEY": "your-secret-key"
}
}
}
}For mock/demo mode, set "TENABLE_MOCK": "true" in env and omit the API keys.
Tools Reference
All tools return Markdown. Read-only tools carry readOnlyHint: true annotations.
Assets & Exposure
Tool | Description |
| List assets with hostname/IP/OS filters and pagination |
| Full asset detail by UUID (hostname, IPs, OS, AES, ACR, tags) |
| Cyber Exposure Score (CES) from Tenable One |
| Per-asset AES (0-1000) and ACR (1-10) |
| Open vulnerability counts by severity |
| Tenable One exposure view cards with CES trend series |
Vulnerabilities & Plugins
Tool | Description |
| List vulns with severity/VPR/CVE/state filters |
| Full plugin details (description, solution, references) |
| Per-asset vulnerability list |
| Plugin family and plugin metadata |
| Before/after verification that CVEs/plugins are fixed on given assets |
| Recast/accept rule search |
Scans, Scanners & Policies
Tool | Description |
| Scan inventory, results, run history |
| Scan lifecycle (write operations) |
| Scanner fleet |
| Scan policies |
| Folders and scan exclusions |
Attack Path Analysis (Tenable One)
Tool | Description |
| Prioritized attack paths with source/target and techniques |
| Attack path findings |
| MITRE ATT&CK technique inventory |
| Per-country APA coverage map bucketed by hostname prefix (ISO 3166-1 defaults, configurable) |
Web App Scanning, ASM, Cloud & Containers
Tool | Description |
| Web App Scanning configs, scans, findings |
| Attack Surface Management inventory |
| CNAPP cloud resources and misconfigurations |
| CNAPP VM and container image vulnerabilities |
| Container Security |
Platform Administration
Tool | Description |
| Tag management |
| Nessus agent fleet |
| Network objects |
| Users and groups |
| Platform audit log |
| Compliance/audit findings |
Configuration
Environment Variable | Default | Description |
| (required) | Tenable API access key |
| (required) | Tenable API secret key |
|
| Tenable cloud URL |
|
| Enable mock mode for demo/testing |
|
| Safety cap for export consumption |
|
| Default pagination limit |
| (optional) | Tenable Cloud Security (CNAPP) API key |
| (optional) | Attack Surface Management API key |
| (optional) | JSON map of hostname prefixes to country labels for APA coverage bucketing (defaults to ISO 3166-1 alpha-2) |
Development
# Run tests (uses mock mode automatically -- no credentials needed)
pytest tests/ -v
# Lint
ruff check src/ tests/Architecture
FastMCP v3 server with lifespan-managed
TenableIOclientAll pyTenable calls wrapped in
asyncio.to_thread()(pyTenable is synchronous)Export iterators consumed with safety cap (
MAX_EXPORT_CONSUME = 10,000) then paginated in-memoryCloud Security tools use direct GraphQL over httpx (https-only guard) instead of pyTenable's CNAPP client
Error handling via
@handle_tenable_errorsdecorator mapping API errors to actionableToolErrormessagesMock client mirrors the pyTenable interface with deterministic UUIDs for consistent test/demo data
Limitations
License-gated features degrade, not fail: CES/AES/ACR, exposure views, APA, WAS, ASM, CNAPP, and Container Security require the corresponding Tenable licenses; tools return an explanatory message when the feature is unavailable on your instance.
Tenable VM (cloud) only — Tenable Security Center (on-prem) is not supported; its API differs substantially.
Export scale: vulnerability/asset exports are capped at
TENABLE_MAX_EXPORTrecords per call to keep responses LLM-sized. This is not a full data-lake export tool.Write surface is minimal by design: scan launch/stop and tag operations only. No remediation, recast, or user-management writes.
APA country coverage relies on hostname prefixes when asset tags are absent; hostnames that don't encode location won't bucket (they are reported as unmapped rather than guessed).
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tarhou/tenable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server