# Cybersecurity Vuln Mcp (`martc03/cybersecurity-vuln-mcp`) Actor

- **URL**: https://apify.com/martc03/cybersecurity-vuln-mcp.md
- **Developed by:** [CoDee](https://apify.com/martc03) (community)
- **Categories:** AI, Integrations
- **Stats:** 7 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-usage

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Cybersecurity Vulnerability Intelligence MCP Server

Unified vulnerability intelligence from 4 government data sources in a single MCP server. Get enriched CVE lookups with CVSS scores, active exploitation status, exploitation probability, and ATT\&CK techniques — all in one call.

### Data Sources

| Source | What It Provides | Update Frequency |
|--------|-----------------|-----------------|
| **NIST NVD 2.0** | CVE details, CVSS scores, descriptions, references, CWE classifications | Continuous |
| **CISA KEV** | Actively exploited vulnerabilities catalog, remediation deadlines | Daily |
| **FIRST.org EPSS** | Exploitation probability scores (0-1) predicting likelihood of exploitation in next 30 days | Daily |
| **MITRE ATT\&CK** | Adversary techniques mapped to CVEs | Quarterly |

### Tools

#### `vuln_lookup_cve` — Enriched CVE Lookup (Recommended Start)

The killer feature. Look up any CVE and get intelligence from all 4 sources in a single call.

**Parameters:**

- `cveId` (required): CVE identifier (e.g., `CVE-2021-44228`)

**Returns:** NVD details + CVSS score + KEV exploitation status + EPSS probability + ATT\&CK techniques

**Example:** Look up Log4Shell → Get CVSS 10.0, confirmed in CISA KEV, EPSS 0.97 (97th percentile), mapped to T1190 (Exploit Public-Facing Application).

#### `vuln_search` — Search CVEs

Search the NVD by keyword, severity, and date range.

**Parameters:**

- `keyword`: Search term (e.g., "apache log4j", "buffer overflow")
- `severity`: LOW, MEDIUM, HIGH, or CRITICAL
- `pubStartDate` / `pubEndDate`: ISO date range
- `hasKev`: If true, only return CVEs in the CISA KEV catalog
- `limit`: Max results (1-50, default 20)

#### `vuln_kev_latest` — Recently Exploited Vulnerabilities

Get vulnerabilities recently added to CISA's Known Exploited Vulnerabilities catalog.

**Parameters:**

- `days`: Look back period (default 7)
- `limit`: Max results (default 20)

#### `vuln_kev_due_soon` — Upcoming Remediation Deadlines

Get KEV entries with remediation deadlines approaching. Critical for federal compliance.

**Parameters:**

- `days`: Deadline within N days (default 14)
- `limit`: Max results (default 20)

#### `vuln_epss_top` — Highest Exploitation Probability

Get CVEs most likely to be exploited in the next 30 days based on EPSS machine learning model.

**Parameters:**

- `threshold`: Minimum EPSS score 0-1 (default 0.7 = 70%)
- `limit`: Max results (default 20)

#### `vuln_trending` — Newly Published Critical CVEs

Get recently published high/critical severity CVEs from the NVD.

**Parameters:**

- `days`: Published within last N days (default 3)
- `severity`: Minimum severity level (default CRITICAL)
- `limit`: Max results (default 20)

#### `vuln_by_vendor` — Vendor Vulnerability Assessment

Search CVEs for a specific vendor/product. Cross-references with CISA KEV to flag actively exploited issues.

**Parameters:**

- `vendor` (required): Vendor name (e.g., "microsoft", "apache")
- `product`: Narrow by product (e.g., "windows", "log4j")
- `limit`: Max results (default 20)

### Use Cases

- **Vulnerability triage**: Look up a CVE and instantly know if it's actively exploited, its EPSS score, and what ATT\&CK techniques apply
- **Patch prioritization**: Combine KEV status + EPSS scores to prioritize remediation
- **Compliance tracking**: Monitor upcoming CISA KEV remediation deadlines
- **Threat intelligence**: Track trending CVEs and newly weaponized vulnerabilities
- **Vendor risk assessment**: Assess a vendor's vulnerability exposure and active exploitation status

### Attribution

- This product uses data from the NVD API but is not endorsed or certified by the NVD.
- EPSS data provided by FIRST.org (https://www.first.org/epss/).
- ATT\&CK is a registered trademark of The MITRE Corporation. Licensed under Apache 2.0.
- CISA Known Exploited Vulnerabilities Catalog — US Government public domain.

# Actor input Schema

## Actor input object example

```json
{}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("martc03/cybersecurity-vuln-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("martc03/cybersecurity-vuln-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call martc03/cybersecurity-vuln-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,martc03/cybersecurity-vuln-mcp"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/TCeaSEcGKAqAD0Lea/builds/AMGaOs47FbcjhZSW1/openapi.json
