mirror of
https://github.com/REMnux/remnux-mcp-server
synced 2026-06-21 13:45:33 +00:00
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "@remnux/mcp-server",
|
|
"version": "0.1.48",
|
|
"packageManager": "pnpm@10.33.0",
|
|
"description": "MCP server for using the REMnux malware analysis toolkit via AI assistants",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"remnux-mcp-server": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && cp -r src/config dist/ && chmod +x dist/cli.js",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/cli.js",
|
|
"lint": "eslint src/",
|
|
"test": "vitest run",
|
|
"pretest": "pnpm exec tsx scripts/check-stale-build.ts",
|
|
"validate:tools": "pnpm exec tsx scripts/validate-tools.ts",
|
|
"sync:report-guidance": "pnpm exec tsx scripts/sync-report-guidance.ts",
|
|
"preversion": "pnpm run validate:tools && pnpm test",
|
|
"prepare": "husky",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"remnux",
|
|
"malware-analysis",
|
|
"reverse-engineering",
|
|
"security"
|
|
],
|
|
"author": "Zeltser Security Corp",
|
|
"license": "GPL-3.0-only",
|
|
"files": [
|
|
"dist/",
|
|
"!dist/__tests__/",
|
|
"!dist/**/__tests__/",
|
|
"data/tools-index.json",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/REMnux/remnux-mcp-server.git"
|
|
},
|
|
"homepage": "https://remnux.org",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"dockerode": "^4.0.0",
|
|
"ioc-extractor": "^8.1.3",
|
|
"ssh2": "^1.15.0",
|
|
"zod": "^3.23.0"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.ts": [
|
|
"eslint --fix --no-warn-ignored",
|
|
"bash -c 'tsc --noEmit'"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/dockerode": "^3.3.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/ssh2": "^1.15.0",
|
|
"eslint": "^9.0.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.2.7",
|
|
"tsx": "^4",
|
|
"typescript": "^5.4.0",
|
|
"typescript-eslint": "^8.54.0",
|
|
"vitest": "^1.6.0",
|
|
"yaml": "2.9.0"
|
|
}
|
|
}
|