cve-cache-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., "@cve-cache-mcpfind CVEs for lodash on npm"
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.
@weiseer/cve-cache-mcp
Recent CVE + GHSA cache as a stdio MCP server.
Probe P-005 by weiseer.
What it does
Cached, structured snapshot of recent CVE + GitHub Security Advisory records — for AI agents auditing dependencies or screening new packages.
Your agent can:
lookup_cve— full record for one CVE/GHSA IDfind_for_package— all CVEs affecting a package by ecosystem (npm/PyPI/Cargo/Maven/Go)list_recent_critical— recent high-severity CVEs (default: 7-day, CVSS ≥ 7)severity_summary— counts by severity bucket
Related MCP server: Security Vulnerability MCP Server
Why use this instead of your agent querying NVD itself
Agent DIY | cve-cache | |
Source query | NVD JSON feeds + GHSA GraphQL | 1 MCP call |
Token cost (NVD records are large) | $0.05-0.20 | $0 free / $0.00005 paid |
Latency | 2-10 seconds | <100ms |
Cross-ecosystem normalization | Per-source schema | Pre-normalized |
Install
npm install -g @weiseer/cve-cache-mcpUse with Claude Desktop / Cursor / Cline / Continue / Windsurf
{
"mcpServers": {
"cve-cache": {
"command": "npx",
"args": ["-y", "@weiseer/cve-cache-mcp"]
}
}
}License
Apache-2.0. Catalog data: derived from public CVE/NVD/GHSA feeds (CC0/public domain).
Available Tools
4 toolsfind_for_packageA
All CVEs affecting a package. Optionally filter by ecosystem.
| Name | Required | Description | Default |
|---|---|---|---|
| ecosystem | No | npm/pypi/cargo/maven/go | |
| package_name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It states the tool returns all CVEs but does not disclose pagination, ordering, coverage (e.g., only latest vs historical), or any restrictions. It provides minimal behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two short, front-loaded sentences with no unnecessary words. Every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 2 parameters and no output schema, the description is adequate but lacks details on return format, ordering, or pagination. An agent may need more context to fully leverage the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema coverage is 50% (only ecosystem has a description). The description mentions package_name and ecosystem as optional filter, adding context about optionality but not providing detailed semantics for package_name. It partly compensates for the missing schema description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool lists all CVEs for a given package with optional ecosystem filtering. The verb 'find' and resource 'CVEs affecting a package' are specific, and the sibling tools (e.g., lookup_cve for individual CVEs, list_recent_critical for recent critical ones) provide distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (for package-based CVE lookup) but does not explicitly state when not to use or mention alternatives. The sibling names give context, but the description itself lacks clear usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_recent_criticalC
Recent CVEs with CVSS >= threshold. Default: 7-day high-severity feed.
| Name | Required | Description | Default |
|---|---|---|---|
| min_cvss | No | ||
| since_days | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description hints at default behavior (7 days, high severity) but lacks details on pagination, output format, or other behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise, two sentences. Front-loaded with key purpose and default behavior. No redundant text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, no parameter descriptions, no annotations. Description is too minimal for an agent to reliably understand the tool's full behavior and output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
0% schema description coverage. Description implies min_cvss and since_days roles via 'CVSS >= threshold' and 'default: 7-day', but doesn't explicitly explain either parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it lists recent CVEs with CVSS >= threshold and defaults to 7-day high-severity feed. Distinguishes from siblings (lookup_cve, find_for_package, severity_summary) by focusing on recency and severity filter.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool vs siblings. Defaults are given but no conditions or exclusions mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_cveA
Full record for one CVE by ID. Cited NVD + GHSA URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | e.g. CVE-2024-12345 or GHSA-xxxx-xxxx-xxxx |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It mentions 'cited NVD + GHSA URLs' but does not detail other behavioral traits like read-only nature, rate limits, or response size. For a simple lookup, this is minimally adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise sentence (7 words) that front-loads the core purpose. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description should explain return values. It only mentions 'Full record' and cited URLs, lacking specifics on what fields or structure the response contains. This is insufficient for a tool with no other docs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the description adds no additional meaning beyond what is already in the schema's parameter description. It merely repeats the ID format example, failing to add value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: 'Full record for one CVE by ID.' It specifies the resource (CVE) and the scope (one by ID), distinguishing it from sibling tools like 'find_for_package' which searches by package.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when a specific CVE ID is known, but does not explicitly state when to avoid it or name alternatives. However, given the sibling tool names, context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
severity_summaryA
Counts by severity bucket across the snapshot. Quick agent triage view.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and description only says 'counts' – does not explicitly state read-only or disclose other behavioral traits like data source or performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise, two short phrases, no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequately describes purpose for a simple aggregation tool with no input or output schema; could specify which severity buckets are included.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so description does not need to add meaning beyond schema; baseline 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Uses specific verb 'counts' and resource 'severity bucket across the snapshot', clearly distinguishing from siblings like lookup_cve or list_recent_critical.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implicit usage hint via 'quick agent triage view', but no explicit when-to-use or when-not-to-use guidance compared to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v0.1.1- First observed
find_for_package - First observed
list_recent_critical - First observed
lookup_cve - First observed
severity_summary
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: lookup by ID, search by package, list recent criticals, and severity summary. No overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (lookup_cve, find_for_package, list_recent_critical, severity_summary).
With 4 tools, the set is concise and covers core CVE operations without being too sparse or bloated. Slightly small but appropriate for the domain.
The surface covers lookup, package search, recent criticals, and severity summary. Missing features like ecosystem-specific search or filtering on lookup are minor gaps.
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 Connectors
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
Real-time CVE, exploit, and vulnerability intelligence for AI assistants (350K+ CVEs, 115K+ PoCs)
Threat intel + your scans/findings/Shield posture. CVE, EPSS, KEV, package vuln lookup, DAST.
Related MCP Servers
- AlicenseAqualityCmaintenanceProvides live CVE data from NVD and EPSS without API key, enabling AI assistants to look up CVSS scores, search vulnerabilities, and check product CVEs.3MIT
- FlicenseNot gradedqualityCmaintenanceProvides Claude with live access to multiple vulnerability databases (NVD, OSV, GitHub Advisories, Snyk) for querying CVEs, package vulnerabilities, and remediation guidance.-
- AlicenseNot gradedqualityCmaintenanceProvides CVE lookup, search, and exploit intelligence from public vulnerability sources (NVD, CISA KEV, EPSS) for AI agents to produce remediation guidance without consuming LLM tokens for data fetching.1MIT
- AlicenseNot gradedqualityCmaintenanceProvides real-time vulnerability intelligence including CVE lookup, EPSS exploit probability, and CISA KEV status from free APIs, enabling AI assistants to prioritize CVEs by real-world risk.MIT
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/weiseer/cve-cache-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server