package.json•1.04 kB
{
"name": "cobaltstrike-mcp",
"version": "0.1.0",
"description": "Model Context Protocol server for managing Cobalt Strike operations through natural language commands",
"main": "dist/index.js",
"type": "module",
"bin": {
"cobaltstrike-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"rebuild-keytar": "npm rebuild keytar",
"postinstall": "npm rebuild keytar || (node -e \"console.warn('Warning: keytar rebuild failed, credentials will be stored in config file')\" && exit 0)"
},
"keywords": [
"mcp",
"cobalt-strike",
"rest-api",
"model-context-protocol"
],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"keytar": "^7.9.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}