tenable-activity-mcp
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-activity-mcpSummarize activity over the past 24 hours"
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-activity-mcp
An MCP server that exposes the Tenable Vulnerability Management audit/activity log
(GET /audit-log/v1/events) as a small set of tools, so any MCP client can ask about
platform activity, API-key usage, and anomalous behaviour on demand.
The server does the analysis. Counting, grouping, rate math and threshold comparisons
all happen in Python; tools return finished, structured results (failure_rate_pct,
by_actor, findings with reasoning) rather than dumping raw events for the model to
add up.
What it gives you
Tool | Purpose |
| Event feed for a window, with actor/action filters. Pagination is followed automatically; returns a resumable |
| Deterministic rollup for a window: counts by actor, action, CRUD type and access type, plus failure/anonymous rates. |
| API-key-driven activity only, grouped by actor: action breakdown, distinct source IPs, first/last seen. |
| Compares a window against each actor's stored baseline. Flags new actors, volume spikes, unseen source IPs, failed-event bursts, sustained failure rates, off-hours spikes and never-before-seen actions - each with evidence and a reasoning sentence. |
| One actor's full picture: role (best effort), all-time action breakdown, access types, every source IP seen. |
| Pass/fail on whether the configured keys can actually read the audit log, with remediation text. |
Safety properties worth knowing:
Nothing that looks like a credential is ever returned. Field values whose key names a secret (
secret_key,api_key,token,password, ...) or whose value looks like Tenable key material are masked to their last 4 characters.Pagination is capped at 20 pages / 100k events per tool call; hitting the cap is reported explicitly along with the cursor needed to continue.
429s back off using the
X-RateLimit-Resetheader (the endpoint sends noRetry-After), with exponential fallback and a retry ceiling.
Related MCP server: Entra Identity Posture MCP
Requirements
Python 3.11+
Tenable VM API keys whose owner can read the audit log
Tenable role / permissions
Reading audit-log/v1/events requires the Administrator role, or a custom role with
explicit audit-log read permission, on the user that owns the API keys. Anything less
gets HTTP 403; check_permission_prereqs reports that in plain language.
Generate keys in Tenable VM under Settings → My Account → API Keys. The keys inherit the permissions of the user that created them.
get_actor_profile additionally tries to resolve an actor's role from the user
directory. If the keys cannot list users, the profile is still returned - just without
the role label.
Setup
uv sync --extra devThen copy .env.example to .env and fill in your keys:
cp .env.example .envVerify credentials and permissions before wiring it into a client:
uv run python -c "from dotenv import load_dotenv; load_dotenv(); from src.server import check_permission_prereqs; print(check_permission_prereqs())"Run the server directly (it speaks MCP over stdio, so it will just sit there waiting for a client - that is the correct behaviour):
uv run python -m src.serverConnecting a client
Use the absolute path to your clone in the config below. To print it, run pwd
from the repository root on macOS/Linux, or (Get-Location).Path in PowerShell.
Claude Desktop
Edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"tenable-activity": {
"command": "uv",
"args": [
"--directory",
"C:\\path\\to\\tenable-activity-mcp",
"run",
"python",
"-m",
"src.server"
],
"env": {
"TENABLE_ACCESS_KEY": "your_access_key",
"TENABLE_SECRET_KEY": "your_secret_key",
"TENABLE_MCP_BASE_URL": "https://cloud.tenable.com"
}
}
}
}Restart Claude Desktop afterwards. On macOS/Linux use a POSIX path
(/Users/you/tenable-activity-mcp).
If uv is not on the launcher's PATH, use its absolute path (which uv /
(Get-Command uv).Source) as command.
Claude Code
claude mcp add tenable-activity --env TENABLE_ACCESS_KEY=your_access_key --env TENABLE_SECRET_KEY=your_secret_key -- uv --directory /absolute/path/to/tenable-activity-mcp run python -m src.serverOr add the same block as above to a project-level .mcp.json.
Credentials passed via env take precedence over .env; the .env file is a
local-development convenience, and either mechanism works.
Example questions to ask once connected
"Check whether my Tenable credentials can read the audit log."
"Summarise Tenable platform activity for the last 7 days - who was most active, and what's the failure rate?"
"Which API keys were used against Tenable in the last 30 days, and from which source IPs?"
"Look for anomalies in Tenable activity over the past 3 days against a 30-day baseline, and explain anything you flag."
"Show me everything actor 00000000-1111-4222-8333-444444444444 has ever done - actions, access types, and IPs."
How anomaly detection works
detect_anomalies needs history to compare against, which lives in a local SQLite file
(state.db, created automatically):
If stored baselines are older than
BASELINE_REFRESH_MAX_AGE_HOURS(12), the server fetches thebaseline_daysimmediately preceding your window and recomputes per-actor averages, known IPs, known actions and an hour-of-day histogram.Your window is fetched and compared against those baselines.
Events in the analysed window are not folded into the baseline, so re-running the same window returns the same findings.
Every threshold is a named constant at the top of src/anomaly.py and is echoed back in
each result under thresholds:
Constant | Default | Meaning |
|
| Window events/day must exceed this multiple of the baseline average |
|
| Floor before a spike can be flagged at all |
|
| How recently an IP must have been seen to count as "known" |
|
| Failure-clustering trigger |
|
| Sustained failure-rate trigger (over at least 10 events) |
|
| Off-hours band |
|
| Off-hours share must exceed this multiple of the actor's baseline share |
Baselines are per actor, so a service account that legitimately runs 500 scans a day does not get flagged for doing exactly that.
Layout
src/
server.py MCP entrypoint (FastMCP-style) + the six tool definitions
tenable_client.py Auth, filter building, cursor pagination, 429 backoff, typed errors
classifier.py API-key vs UI/session tagging, IP extraction, redaction, rollups
anomaly.py Thresholds and the individual anomaly checks
state.py SQLite: cursors, accumulated actor history, computed baselines
tests/
test_pagination.py test_classifier.py test_anomaly.pyDependency direction is one-way: server → {anomaly, classifier, state} → tenable_client.
Testing
Three levels, in the order you should run them.
1. Unit tests (no credentials, no network)
uv run pytest -q105 tests covering pagination/cursor handling, rate-limit backoff, API-key vs session classification, redaction, and every anomaly threshold. Every API response is faked through a stub transport, so the suite never touches a live tenant.
2. Offline end-to-end (no credentials, no network)
uv run python scripts/smoke_local.pyRuns all six tools against a scripted fake Tenable (a quiet baseline month, then a noisy night from a new IP) and asserts the results: anomalies flagged, planted secrets redacted, bad input returned as a structured error instead of an exception. Exits non-zero on any failure, so it works as a pre-commit or CI gate.
3. Live check against your tenant (read-only)
With .env filled in:
uv run python scripts/live_check.py 7Verifies audit-log permissions first and stops with remediation text if they are wrong, then prints a real summary, API-key usage breakdown, anomaly findings, and the busiest actor's profile for the last N days (default 7). All calls are GETs; nothing is written to Tenable.
4. Through an MCP client
Any MCP client works. To poke at the tools interactively without a chat client:
npx @modelcontextprotocol/inspector uv --directory . run python -m src.serverOr wire it into Claude Desktop / Claude Code (above) and ask one of the example
questions. check_permission_prereqs is the right first call - it confirms the server
started, found its credentials, and can reach the audit log.
Inspecting local state
uv run python -c "from src.state import StateStore; print(StateStore().stats())"Delete state.db to reset baselines; the next detect_anomalies call rebuilds them.
Known limitations
Requires the Administrator role. Reading
audit-log/v1/eventsneeds the Administrator role, or a custom role with explicit audit-log read permission, on the user that owns the API keys. Anything less returns HTTP 403. Runcheck_permission_prereqsfirst - it reports exactly this, with remediation text.Anomaly detection needs history before it is useful. The first
detect_anomaliescall against a freshstate.dbbuilds baselines from the 30 days preceding your window and then compares against them. Actors with little or no prior activity flag asnew_actor, so early runs are noisier than later ones.Role resolution is best effort.
get_actor_profiletries to resolve an actor's Tenable role from the user directory. If the keys cannot list users, the profile is still returned - just without the role label.Off-hours detection uses a fixed UTC band. The off-hours window is 20:00-06:00 UTC and does not adjust to the tenant's working timezone. Distributed teams will see off-hours findings that are simply another region's working morning.
Baselines are local to the machine running the server.
state.dbis not shared between installs, so two operators running their own copies build independent baselines and can reach different conclusions about the same window.Wide windows return partial results by design. One tool call follows at most 20 pages / 100,000 events. Hitting that cap is reported explicitly along with the
next_tokenneeded to resume, so it is never a silent truncation - but a very large window does take several calls.Only the first 1,000 events come back inline.
list_activity_eventscaps the inlineeventsarray at 1,000 and setsinline_truncatedwhen it does. Thesummaryblock still covers every event fetched, so the aggregate numbers stay correct even when the inline list is trimmed.get_actor_profilelooks back 365 days at most, and cannot see further back than the audit log itself retains.
Notes
Built against
mcp==2.0.0, where the SDK renamedFastMCPtoMCPServer.server.pyimports whichever name the installed SDK provides, so it also works onmcp1.x.Event fetching goes through pyTenable's
TenableIOsession (audit_log.events(..., return_json=True)), which keeps auth and connection handling in the maintained library while leaving thepagination.nextcursor visible to us. If pyTenable is unavailable, an equivalentrequeststransport using theX-ApiKeys: accessKey=...;secretKey=...header takes over.Timestamps are UTC everywhere, including the off-hours band.
state.dbaccumulates per-actor history. Delete it to reset all baselines; the nextdetect_anomaliescall rebuilds them.
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.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceExposes Azure Log Analytics workspace data with tools for querying AuditLogs and AzureActivity tables, supporting custom KQL queries, time range filters, and pagination.
- AlicenseAqualityBmaintenanceEnables auditing and monitoring of Microsoft Entra ID security posture, Conditional Access policies, and Zero Trust alignment via Microsoft Graph API.5MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server for Tenable Vulnerability Management and the Tenable One platform, enabling LLMs to query assets, vulnerabilities, scans, exposure metrics, attack paths, and more via natural language.MIT
- AlicenseAqualityCmaintenanceMCP server for Tenable.io/One Vulnerability Management that provides read-only tools for querying scans, assets, plugins, and vulnerabilities, plus specialized reporting tools for VPR re-prioritization, CISA KEV/EPSS exposure, and scan delta comparisons.112MIT
Related MCP Connectors
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
Read-only MCP access to sessions, funnels, campaigns, errors, live visitors, and anomalies.
Read-only access to Auralogs production logs: search logs, inspect errors, review AI analyses.
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/brendanong95/tenable-activity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server