@humansecurity/human-mcp-server
Version:
Model Context Protocol (MCP) server providing comprehensive cybersecurity intelligence from HUMAN Security. Offers real-time attack monitoring, threat detection, fraud prevention, PCI DSS compliance validation, and supply chain security for AI-powered app
97 lines (96 loc) • 3 kB
JSON
{
"name": "@humansecurity/human-mcp-server",
"description": "Model Context Protocol (MCP) server providing comprehensive cybersecurity intelligence from HUMAN Security. Offers real-time attack monitoring, threat detection, fraud prevention, PCI DSS compliance validation, and supply chain security for AI-powered applications.",
"version": "1.0.0",
"type": "module",
"main": "./dist/index.cjs",
"bin": "./dist/index.cjs",
"files": [
"dist/**/*"
],
"keywords": [
"mcp",
"model-context-protocol",
"cybersecurity",
"security",
"threat-detection",
"fraud-prevention",
"human-security",
"cyberfraud",
"bot-detection",
"attack-monitoring",
"pci-dss",
"compliance",
"supply-chain-security",
"code-defender",
"ai",
"llm",
"assistant",
"api",
"security-intelligence",
"threat-intelligence"
],
"scripts": {
"clean": "rm -rf dist",
"build": "esbuild --platform=node --bundle --target=es2022 --outfile=dist/index.cjs --banner:js=\"#!/usr/bin/env node\" src/index.ts",
"preinspect": "npm run build",
"inspect": "npx @modelcontextprotocol/inspector -e HUMAN_CYBERFRAUD_API_TOKEN=$HUMAN_CYBERFRAUD_API_TOKEN -e HUMAN_CODE_DEFENDER_API_TOKEN=$HUMAN_CODE_DEFENDER_API_TOKEN npm run start",
"prestart": "npm run build",
"prebuild": "npm run clean && npm run typecheck",
"postbuild": "chmod +x dist/index.cjs",
"start": "node dist/index.cjs",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"typecheck": "tsc --noEmit",
"pre-commit": "./node_modules/.bin/lint-staged",
"prepare": "husky",
"test": "mocha",
"coverage": "c8 npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"node-fetch": "^3.3.2",
"zod": "^3.25.67"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HumanSecurity/human-mcp-server.git"
},
"homepage": "https://github.com/HumanSecurity/human-mcp-server#readme",
"bugs": {
"url": "https://github.com/HumanSecurity/human-mcp-server/issues"
},
"author": "HUMAN Security",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.14.0",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.36.0",
"c8": "^10.1.3",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"esbuild": "^0.25.8",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"sinon": "^21.0.0",
"ts-essentials": "^10.1.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.ts": "npm run lint:fix"
}
}