cisa-cybersecurity-mcp-server

v0.1.2 pre-1.0

CISA Known Exploited Vulnerabilities with BOD 26-04 deadlines, SSVC prioritization, and the full ICS advisory corpus (CSAF) via MCP. Keyless. STDIO & Streamable HTTP.

cisa-cybersecurity.caseyjhand.com/mcp
claude mcp add --transport http cisa-cybersecurity-mcp-server https://cisa-cybersecurity.caseyjhand.com/mcp
codex mcp add cisa-cybersecurity-mcp-server --url https://cisa-cybersecurity.caseyjhand.com/mcp
{
  "mcpServers": {
    "cisa-cybersecurity-mcp-server": {
      "url": "https://cisa-cybersecurity.caseyjhand.com/mcp"
    }
  }
}
gemini mcp add --transport http cisa-cybersecurity-mcp-server https://cisa-cybersecurity.caseyjhand.com/mcp
{
  "mcpServers": {
    "cisa-cybersecurity-mcp-server": {
      "command": "bunx",
      "args": [
        "mcp-remote",
        "https://cisa-cybersecurity.caseyjhand.com/mcp"
      ]
    }
  }
}
{
  "mcpServers": {
    "cisa-cybersecurity-mcp-server": {
      "type": "http",
      "url": "https://cisa-cybersecurity.caseyjhand.com/mcp"
    }
  }
}
curl -X POST https://cisa-cybersecurity.caseyjhand.com/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'

Tools

7

cisa_list_reference

Decode the vocabulary the other CISA tools take as input. Topics cover the BOD 26-04 remediation timeline table and what each tier means, the KEV record fields and their value domains, the SSVC decision points CISA publishes, the critical-infrastructure sector names as the advisory corpus spells them, advisory ID formats, CVSS severity bands, and the freshness of the data this server currently holds. Call this before constructing filters for cisa_search_kev or cisa_search_ics_advisories, and whenever another tool's recovery hint points here.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_list_reference",
    "arguments": {
      "topic": "<topic>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "topic": {
      "type": "string",
      "enum": [
        "directives",
        "kev_fields",
        "ssvc_values",
        "sectors",
        "advisory_id_formats",
        "severity_bands",
        "sources"
      ],
      "description": "Which reference block to return: directives (BOD 26-04 Table 1 and its definitions), kev_fields, ssvc_values, sectors, advisory_id_formats, severity_bands, or sources (what this server currently holds)."
    }
  },
  "required": [
    "topic"
  ],
  "additionalProperties": false
}
view source ↗

cisa_check_cve_status

Check CVE IDs against the CISA Known Exploited Vulnerabilities catalog — up to 200 per call, served from a cached catalog snapshot at no upstream cost. Returns, per CVE, whether it is in KEV and if so the date added, the federal remediation due date, days remaining or days overdue, which binding operational directive the entry cites, the required action text, whether it is linked to ransomware campaigns, whether it falls in the three-day forensic-triage tier, CISA's own vendor and product labels, associated CWEs, and the reference URLs parsed from the entry's notes. A CVE that is not in KEV is a normal result, not an error. The CWE IDs returned chain directly into cisa_search_kev's CWE filter, and the parsed NVD reference gives the canonical record for scoring detail.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_check_cve_status",
    "arguments": {
      "cveIds": "<cveIds>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "cveIds": {
      "minItems": 1,
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$",
        "description": "One CVE identifier, e.g. CVE-2025-39964. Case and surrounding whitespace are normalized."
      },
      "description": "CVE identifiers to check, up to 200 per call. The whole batch costs zero upstream requests, so a full CVE alias list from a dependency audit can be checked in one call."
    }
  },
  "required": [
    "cveIds"
  ],
  "additionalProperties": false
}
view source ↗

cisa_search_kev

Search the CISA Known Exploited Vulnerabilities catalog across every entry in the cached snapshot. Filter by vendor or product using CISA's own labels, by name substring, by CWE, by the date an entry was added, by due date, by overdue status, by ransomware linkage, by the three-day forensic-triage tier, or by which binding operational directive the entry cites. Results are paged and sortable by due date or date added. Vendor and product values are CISA's free-text labels, not CPE names — call cisa_list_reference for the field vocabulary before guessing one. The catalog records additions but carries no per-record modified timestamp, so dateAddedFrom answers "what is new since D" while a revised due date on an existing entry is not detectable from the feed.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_search_kev",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "vendorProject": {
      "description": "Case-insensitive substring of CISA's own vendor label. 283 distinct values.",
      "type": "string",
      "minLength": 2
    },
    "product": {
      "description": "Case-insensitive substring of CISA's own product label. 694 distinct values.",
      "type": "string",
      "minLength": 2
    },
    "nameContains": {
      "description": "Strict token match over the vulnerability name and short description: every token must appear. No fuzzy fallback.",
      "type": "string",
      "minLength": 2
    },
    "cwe": {
      "description": "Exact CWE identifier, e.g. CWE-362. Excludes the 175 entries with no CWEs.",
      "type": "string",
      "pattern": "^CWE-[0-9]+$"
    },
    "cveIdPrefix": {
      "description": "Year scope for the CVE ID, e.g. CVE-2026.",
      "type": "string",
      "pattern": "^CVE-[0-9]{4}$"
    },
    "dateAddedFrom": {
      "description": "Earliest date added, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "dateAddedTo": {
      "description": "Latest date added, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "dueBefore": {
      "description": "Latest due date, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "dueAfter": {
      "description": "Earliest due date, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "overdue": {
      "description": "True selects entries whose due date is strictly before the echoed asOf date.",
      "type": "boolean"
    },
    "ransomware": {
      "description": "True selects entries CISA has linked to ransomware campaigns (360 entries).",
      "type": "boolean"
    },
    "forensicTriage": {
      "description": "True selects the BOD 26-04 three-day forensic-triage tier (58 entries).",
      "type": "boolean"
    },
    "directive": {
      "description": "Which directive the entry cites. \"none\" selects the 1,277 entries citing neither.",
      "type": "string",
      "enum": [
        "BOD 26-04",
        "BOD 22-01",
        "none"
      ]
    },
    "sortBy": {
      "default": "dateAdded",
      "description": "Field to sort by.",
      "type": "string",
      "enum": [
        "dueDate",
        "dateAdded"
      ]
    },
    "order": {
      "default": "desc",
      "description": "Sort direction.",
      "type": "string",
      "enum": [
        "asc",
        "desc"
      ]
    },
    "limit": {
      "default": 25,
      "description": "Maximum entries per page.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "description": "Opaque pagination cursor from a previous call. Omit for the first page.",
      "type": "string"
    }
  },
  "required": [
    "sortBy",
    "order",
    "limit"
  ],
  "additionalProperties": false
}
view source ↗

cisa_get_ssvc

Fetch the SSVC decision points CISA publishes per CVE as a CVE Authorized Data Publisher — Exploitation, Automatable, and Technical Impact — along with the CVSS score and CWE CISA contributes where present, and compute the BOD 26-04 remediation timeline those values imply for the asset exposure you supply. The computed timeline applies CISA's published decision table to CISA's published decision points and your stated exposure; it is not a compliance determination and it is not CISA's own due-date assignment, which is reported separately when the CVE is in KEV and can differ. Not every CVE is enriched — a miss returns found false with guidance rather than an error. Call cisa_list_reference with topic ssvc_values for the decision-point vocabulary.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_get_ssvc",
    "arguments": {
      "cveIds": "<cveIds>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "cveIds": {
      "minItems": 1,
      "maxItems": 50,
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$",
        "description": "One CVE identifier, e.g. CVE-2025-39964. Case and surrounding whitespace are normalized."
      },
      "description": "CVE identifiers to look up, up to 50 per call — lower than cisa_check_cve_status's 200-CVE cap because each CVE needs its own live enrichment lookup rather than a cached batch check."
    },
    "assetExposure": {
      "default": "unknown",
      "description": "Whether the affected asset is reachable by unauthenticated or untrusted entities over public networks. The one BOD 26-04 decision point CISA cannot publish. \"unknown\" returns both arms so the spread is visible without guessing.",
      "type": "string",
      "enum": [
        "publicly_exposed",
        "not_publicly_exposed",
        "unknown"
      ]
    }
  },
  "required": [
    "cveIds",
    "assetExposure"
  ],
  "additionalProperties": false
}
view source ↗

cisa_search_ics_advisories

Search the CISA industrial control system advisory corpus — 3,926 CSAF 2.0 documents covering PLC, HMI, SCADA, building-automation, and medical-device products from 2010 onward. Filter by vendor, product, CVE, CVSS range, severity band, critical-infrastructure sector, advisory series, publication date, or revision date, and run full-text search over advisory titles and product names. Sector filtering reaches only advisories that carry a sector note, which begins in 2017; the response reports how many documents a sector filter can never match. Returns advisory IDs for cisa_get_advisory, the CVEs each advisory covers, and the source URL and attribution every advisory response carries.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_search_ics_advisories",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "q": {
      "description": "Full-text search over advisory titles, vendor names, and product names. Tokens are AND-combined; FTS5 operators in the input are neutralized rather than honored.",
      "type": "string",
      "minLength": 2
    },
    "vendor": {
      "description": "Case-insensitive substring of a vendor label. Vendor names are unnormalized upstream — the same company appears under several spellings — so this is substring, not exact.",
      "type": "string",
      "minLength": 2
    },
    "product": {
      "description": "Case-insensitive substring of a product name.",
      "type": "string",
      "minLength": 2
    },
    "cve": {
      "description": "Exact CVE membership. The corpus covers 12,321 distinct CVEs.",
      "type": "string",
      "pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$"
    },
    "cvssMin": {
      "description": "Minimum value of the advisory's maximum CVSS base score, inclusive.",
      "type": "number",
      "minimum": 0,
      "maximum": 10
    },
    "cvssMax": {
      "description": "Maximum value of the advisory's maximum CVSS base score, inclusive.",
      "type": "number",
      "minimum": 0,
      "maximum": 10
    },
    "severity": {
      "description": "Severity band of the advisory's maximum CVSS score.",
      "type": "string",
      "enum": [
        "NONE",
        "LOW",
        "MEDIUM",
        "HIGH",
        "CRITICAL"
      ]
    },
    "sector": {
      "description": "Critical-infrastructure sector, matched against the normalized sector set. Multiple is the sentinel the corpus uses for an advisory affecting many sectors.",
      "type": "string",
      "enum": [
        "Chemical",
        "Commercial Facilities",
        "Communications",
        "Critical Manufacturing",
        "Dams",
        "Defense Industrial Base",
        "Emergency Services",
        "Energy",
        "Financial Services",
        "Food and Agriculture",
        "Government Facilities",
        "Healthcare and Public Health",
        "Information Technology",
        "Nuclear Reactors, Materials, and Waste",
        "Transportation Systems",
        "Water and Wastewater Systems",
        "Multiple"
      ]
    },
    "series": {
      "description": "Advisory series: ICSA (3,738 documents) or ICSMA medical devices (188).",
      "type": "string",
      "enum": [
        "ICSA",
        "ICSMA"
      ]
    },
    "publisher": {
      "description": "coordinator selects CISA-authored advisories (2,863); other selects republished vendor advisories (1,063).",
      "type": "string",
      "enum": [
        "coordinator",
        "other"
      ]
    },
    "publishedFrom": {
      "description": "Earliest initial release date, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "publishedTo": {
      "description": "Latest initial release date, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "revisedFrom": {
      "description": "Earliest current release date, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "revisedTo": {
      "description": "Latest current release date, inclusive, YYYY-MM-DD.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "sortBy": {
      "default": "revised",
      "description": "Field to sort by. relevance requires q and ranks by FTS5 bm25.",
      "type": "string",
      "enum": [
        "relevance",
        "published",
        "revised",
        "maxCvss"
      ]
    },
    "order": {
      "default": "desc",
      "description": "Sort direction. Under relevance, desc means most relevant first.",
      "type": "string",
      "enum": [
        "asc",
        "desc"
      ]
    },
    "limit": {
      "default": 20,
      "description": "Maximum advisories per page.",
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "cursor": {
      "description": "Opaque pagination cursor from a previous call. Omit for the first page.",
      "type": "string"
    }
  },
  "required": [
    "sortBy",
    "order",
    "limit"
  ],
  "additionalProperties": false
}
view source ↗

cisa_get_advisory

Read one CISA industrial control system advisory in full: affected products flattened from the CSAF product tree into vendor, product, and version ranges; per-CVE CVSS score, vector, and CWE; remediations with their category and vendor instructions; critical-infrastructure sectors; and the revision history. Large advisories return a section outline instead of the whole document — re-call with the sections you need. Republished vendor advisories carry the originating vendor's text; every response reports the source URL and attribution. Find advisory IDs with cisa_search_ics_advisories.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_get_advisory",
    "arguments": {
      "advisoryId": "<advisoryId>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "advisoryId": {
      "type": "string",
      "pattern": "^\\s*ICS(A|MA)-\\d{2}-\\d{3}-\\d{2}(?:[a-z]|-\\d+)?(?:\\.json)?\\s*$",
      "description": "Advisory identifier, e.g. ICSA-26-260-07 or ICSMA-26-253-02. Case-insensitive; an optional revision suffix is a single letter a-f or a numeric -N. A trailing .json is stripped."
    },
    "sections": {
      "description": "Sections to return. Omit for the whole document, or for its outline when the document overflows the inline budget.",
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "advisory",
          "summary",
          "products",
          "vulnerabilities",
          "revisionHistory",
          "references",
          "acknowledgments"
        ],
        "description": "One section name, as the outline reports it."
      }
    }
  },
  "required": [
    "advisoryId"
  ],
  "additionalProperties": false
}
view source ↗

cisa_get_alerts

List what CISA has published recently — its combined advisory feed, its alerts feed, or its ICS advisory feed. Each feed is a rolling window of exactly 30 items with no history, no pagination, and no date-range query, so the window's coverage varies from about a week to about two months depending on the feed. For ICS advisory history beyond the window, use cisa_search_ics_advisories, which covers the full corpus back to 2010.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "cisa_get_alerts",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "feed": {
      "default": "advisories",
      "description": "Which feed to read: advisories (all.xml, ~8 days of coverage), alerts (alerts.xml, ~8 weeks), or ics (ics-advisories.xml, ~2.5 weeks).",
      "type": "string",
      "enum": [
        "advisories",
        "alerts",
        "ics"
      ]
    },
    "limit": {
      "default": 30,
      "description": "Maximum items to return. The 30 ceiling is the upstream window, not a server choice.",
      "type": "integer",
      "minimum": 1,
      "maximum": 30
    },
    "since": {
      "description": "Keep only items published on or after this date, YYYY-MM-DD. Filters within the fetched window; it cannot reach back beyond it.",
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    }
  },
  "required": [
    "feed",
    "limit"
  ],
  "additionalProperties": false
}
view source ↗

Resources

2

One entry from the CISA Known Exploited Vulnerabilities catalog, addressed by CVE ID — the same record shape cisa_check_cve_status returns, including the federal remediation deadline, the directive cited, ransomware and forensic-triage flags, and the references parsed from the entry notes. Listing returns the 30 most recently added entries.

uri cisa://kev/{cveId} mime application/json

One CISA industrial control system advisory, flattened from CSAF 2.0 — affected products with version ranges, per-CVE CVSS and CWE, remediations, sectors, and revision history. Large advisories return a section outline instead of the whole document; follow up with cisa_get_advisory to request named sections. Listing returns the 30 most recently revised advisories.

uri cisa://advisory/{advisoryId} mime application/json