package.json•1.42 kB
{
"name": "mcp-forensics-connections",
"version": "0.1.0",
"description": "A Model Context Protocol server for analyzing connections between people in forensic evidence",
"private": false,
"type": "module",
"bin": {
"mcp-forensics-connections": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js --port 3002",
"dev:stdio": "tsx src/index.ts",
"dev:shttp": "tsx src/index.ts --port 3002",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/mcp-forensics.git"
},
"keywords": [
"mcp",
"forensics",
"connections",
"evidence-analysis",
"network-visualization",
"openai",
"llm"
],
"author": {
"name": "Your Name"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/your-username/mcp-forensics/issues"
},
"homepage": "https://github.com/your-username/mcp-forensics#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "1.16.0",
"openai": "^4.0.0",
"dotenv": "^16.0.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@types/node": "^24.2.0",
"@types/ws": "^8.0.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}