package.json•1.1 kB
{
"name": "spiderfoot-mcp-server",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "MCP server exposing SpiderFoot (local Docker) functionality via Model Context Protocol tools.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CorbettCajun/Spiderfoot-MCP-Agent.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/index-http.ts",
"build": "tsc -p tsconfig.json",
"start": "tsx src/index.ts",
"start:http": "node dist/index-http.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.16.0",
"axios": "^1.12.2",
"axios-cookiejar-support": "^6.0.4",
"cheerio": "^1.1.2",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"jsdom": "^27.0.0",
"tough-cookie": "^6.0.0",
"uuid": "^13.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.5.4",
"tsx": "^4.7.0",
"typescript": "^5.5.4"
}
}