-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "cve-mcp",
"version": "0.2.0",
"description": "CVE/vulnerability intelligence MCP server — 41 tools, 11 sources: NVD, EPSS, KEV, GHSA, OSV, Shodan, VulnCheck, Vulners, Nuclei, Metasploit, CIRCL, ATT&CK",
"type": "module",
"bin": {
"cve-mcp": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"dev": "bun --watch run src/index.ts",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"cve",
"vulnerability",
"security",
"nvd",
"epss",
"kev",
"cisa",
"osv",
"ghsa",
"exploit",
"shodan",
"vulncheck",
"nuclei",
"metasploit",
"attack",
"cvss4",
"circl",
"cwe",
"ai",
"agent",
"model-context-protocol"
],
"author": "Orhan Yildirim <contact@orhanyildirim.us> (https://orhanyildirim.us)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/badchars/cve-mcp.git"
},
"homepage": "https://github.com/badchars/cve-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^22.15.3",
"typescript": "^5.8.2"
}
}