UNPKG

stellar-cyber-mcp-agents

Version:

Model Context Protocol (MCP) server for Stellar Cyber security operations with specialized multi-agent analysis capabilities

94 lines (93 loc) 3.18 kB
{ "name": "stellar-cyber-mcp-agents", "version": "1.6.4", "description": "Model Context Protocol (MCP) server for Stellar Cyber security operations with specialized multi-agent analysis capabilities", "main": "dist/mcp-server-working.js", "type": "module", "bin": { "stellar-cyber-mcp-server": "dist/mcp-server-working.js", "stellar-cyber-mcp-working": "dist/mcp-server-working.js", "stellar-cyber-mcp-full": "dist/mcp-server.js", "stellar-cyber-mcp-minimal": "dist/mcp-server-minimal.js", "stellar-cyber-mcp-simple": "dist/mcp-server-simple.js" }, "preferGlobal": true, "scripts": { "build": "tsc && npm run build:chmod", "build:working": "npx tsc src/mcp-server-working.ts --outDir dist --module ESNext --target ES2022 --moduleResolution node --skipLibCheck --allowSyntheticDefaultImports --esModuleInterop && npm run build:chmod", "build:chmod": "chmod +x dist/mcp-server*.js", "dev": "tsx src/index.ts", "start": "node dist/mcp-server.js", "mcp:start": "node dist/mcp-server-working.js", "mcp:working": "node dist/mcp-server-working.js", "mcp:full": "node dist/mcp-server.js", "mcp:minimal": "node dist/mcp-server-minimal.js", "mcp:simple": "node dist/mcp-server-simple.js", "test": "NODE_OPTIONS='--experimental-vm-modules' jest", "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch", "test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage", "test:install": "npm pack && npm install -g stellar-cyber-mcp-agents-*.tgz", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rimraf dist", "prebuild": "npm run clean", "prepublishOnly": "npm run build", "agents:start": "node dist/orchestrator.js", "agents:stop": "pkill -f 'node dist/orchestrator.js'", "agents:status": "node dist/scripts/agent-status.js", "demo": "tsx src/index.ts" }, "keywords": [ "mcp", "mcp-server", "model-context-protocol", "stellar-cyber", "security", "multi-agent", "threat-analysis", "soc", "cybersecurity", "claude", "ai-tools" ], "author": "tsanford01", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/tsanford01/stellar-cyber-mcp-agents.git" }, "bugs": { "url": "https://github.com/tsanford01/stellar-cyber-mcp-agents/issues" }, "homepage": "https://github.com/tsanford01/stellar-cyber-mcp-agents#readme", "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "axios": "^1.6.0", "zod": "^3.22.0", "winston": "^3.11.0", "uuid": "^9.0.0", "eventemitter3": "^5.0.0", "dotenv": "^16.3.0" }, "devDependencies": { "@types/node": "^20.10.0", "@types/uuid": "^9.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "tsx": "^4.0.0", "typescript": "^5.0.0", "rimraf": "^5.0.0" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/", "README.md", "CHANGELOG.md", "docs/claude_desktop_config*.json", "docs/SECURITY.md" ] }