mcp-cve-intelligence-server-lite
Version:
Lite Model Context Protocol server for comprehensive CVE intelligence gathering with multi-source exploit discovery, designed for security professionals and cybersecurity researchers
109 lines (108 loc) • 3.21 kB
JSON
{
"name": "mcp-cve-intelligence-server-lite",
"version": "0.0.8",
"description": "Lite Model Context Protocol server for comprehensive CVE intelligence gathering with multi-source exploit discovery, designed for security professionals and cybersecurity researchers",
"main": "dist/index.js",
"bin": {
"mcp-cve-intelligence-server-lite": "dist/index.js"
},
"type": "module",
"scripts": {
"prebuild": "node scripts/generate-version.cjs",
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsx watch src/index.ts",
"clean": "rm -rf dist",
"prepare": "husky",
"type-check": "npm run prebuild && tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "echo \"No tests specified\" && exit 0",
"check:package": "npm pack --dry-run",
"check:outdated": "npm outdated",
"check:audit": "npm audit --audit-level=moderate",
"release:patch": "npm version patch && git push origin lite-main --follow-tags",
"release:minor": "npm version minor && git push origin lite-main --follow-tags",
"release:major": "npm version major && git push origin lite-main --follow-tags",
"release:preview": ".github/actions/release-notes/generate-notes.sh preview",
"changelog:generate": "echo 'CHANGELOG.md updates disabled - use manual updates only'",
"changelog:unreleased": "echo 'CHANGELOG.md updates disabled - use manual updates only'"
},
"keywords": [
"mcp",
"model-context-protocol",
"cve",
"intelligence",
"server",
"epss",
"vulnerability",
"exploit",
"cybersecurity",
"security",
"vulnerability-intelligence",
"cybersecurity",
"penetration-testing",
"exploit-intelligence",
"nvd",
"security-research",
"cve-database",
"vulnerability-scanner",
"security-automation",
"open-source"
],
"author": "Burak Gonuldas",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"@types/express": "^5.0.3",
"commander": "^14.0.0",
"date-fns": "^4.1.0",
"express": "^5.1.0",
"winston": "^3.17.0",
"zod": "^3.25.74"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gnlds/mcp-cve-intelligence-server.git"
},
"bugs": {
"url": "https://github.com/gnlds/mcp-cve-intelligence-server/issues"
},
"homepage": "https://github.com/gnlds/mcp-cve-intelligence-server#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gnlds"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"files": [
"dist",
"cve-sources.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}