# VulnFeed Dependency Vulnerability Scanner

> VulnFeed Dependency Vulnerability Scanner is a paid API for AI agents from vulnfeed-api.novadyne.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scans a list of software packages for known vulnerabilities and returns EPSS-scored CVE results per package

## Facts

- Endpoint: POST https://vulnfeed-api.novadyne.ai/vulnscan/query
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vulnfeed-dependency-vulnerability-scanner-5827777d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F7miq0Mc73m3M4Kwck9dJ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vulnfeed-dependency-vulnerability-scanner-5827777d -d '<json body>'
```

Example prompt: Can you scan these packages for known vulnerabilities and give me EPSS scores for anything found: lodash@4.17.11, express@4.17.1, and requests==2.25.0?

## When to prefer this

Use this endpoint when you need EPSS-scored vulnerability data for a specific list of software packages — especially useful in CI/CD pipelines, dependency audits, or when you want exploit-probability scoring (EPSS) alongside CVE listings rather than just raw CVE counts.

## Known failure modes

- Empty packages array returns no results
- Unknown or misspelled package names may return no vulnerabilities found (false negative risk)
- Network or upstream data source unavailable returns error
- Malformed package identifiers may cause validation errors
- Rate limiting or payment failure may prevent scan from completing

## How this service works

Dependency vulnerability scanner with EPSS scoring. MCP server + x402 micropayments.

## Output

Returns an array of per-package vulnerability results including EPSS scores, plus aggregate counts of total packages scanned, affected packages, and total vulnerabilities found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "packages"
 ],
 "properties": {
  "packages": {
   "type": "array",
   "description": "Packages to scan for vulnerabilities"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ok": {
   "type": "boolean"
  },
  "results": {
   "type": "array",
   "description": "Per-package vulnerability results with EPSS scores"
  },
  "scanned": {
   "type": "integer"
  },
  "affected_packages": {
   "type": "integer"
  },
  "total_vulnerabilities": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vulnfeed-dependency-vulnerability-scanner-5827777d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vulnfeed-api.novadyne.ai](https://www.zero.xyz/host/vulnfeed-api.novadyne.ai/llms.txt)
