package.json•1.49 kB
{
"name": "pentest-mcp",
"version": "0.6.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"pentest-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"start": "node dist/index.js",
"start:stdio": "MCP_TRANSPORT=stdio node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"start:sse": "MCP_TRANSPORT=sse node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"keywords": ["mcp", "nmap", "john the ripper", "model context protocol", "pentesting", "network scanning", "password cracking", "cybersecurity", "stdio", "http", "sse", "multi-transport"],
"author": "David Montgomery",
"license": "GPL-3.0-or-later",
"description": "NOT for educational use: An MCP server for Nmap and John the Ripper, for professional penetration testers. Supports stdio, HTTP, and SSE transports with OAuth 2.1 authentication.",
"repository": {
"type": "git",
"url": "https://github.com/dmontgomery40/pentest-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"express": "^4.21.2",
"fast-xml-parser": "^5.2.0",
"node-nmap": "^4.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=16.0.0"
}
}