package.json•1.1 kB
{
"name": "huntress-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol server for interacting with the Huntress API",
"main": "build/index.js",
"module": "./src/index.ts",
"type": "module",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"watch": "tsc -w",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"clean": "rimraf build"
},
"keywords": [
"huntress",
"api",
"mcp",
"security",
"endpoint-protection"
],
"author": "Huntress MCP Server Contributors",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"axios": "^1.10.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.19.7",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DynamicEndpoints/huntress-mcp-server.git"
},
"bugs": {
"url": "https://github.com/DynamicEndpoints/huntress-mcp-server/issues"
}
}