package.json•3.22 kB
{
"name": "@mcp/console-automation",
"version": "1.0.0",
"description": "MCP server for AI-driven console application automation and monitoring",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-console": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:stress": "jest --selectProjects stress",
"test:ssh": "jest test/integration/ssh.test.ts",
"test:sessions": "jest test/integration/session-management.test.ts",
"test:errors": "jest test/integration/error-detection.test.ts",
"test:load": "jest test/stress/load.test.ts",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"console",
"automation",
"terminal",
"pty",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"@azure/arm-compute": "^21.0.0",
"@azure/arm-network": "^33.0.0",
"@azure/identity": "^4.0.1",
"@azure/keyvault-secrets": "^4.8.0",
"@influxdata/influxdb-client": "^1.35.0",
"@kubernetes/client-node": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"@serialport/parser-byte-length": "^12.0.0",
"@serialport/parser-readline": "^12.0.0",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"dockerode": "^4.0.2",
"dotenv": "^16.4.5",
"eventemitter3": "^5.0.1",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"jaeger-client": "^3.19.0",
"js-yaml": "^4.1.0",
"node-cron": "^3.0.3",
"node-disk-info": "^1.3.0",
"nodemailer": "^6.9.15",
"opentracing": "^0.14.7",
"p-queue": "^8.0.1",
"prom-client": "^15.1.3",
"python-shell": "^5.0.0",
"serialport": "^12.0.0",
"simple-statistics": "^7.8.3",
"ssh2": "^1.17.0",
"ssh2-sftp-client": "^10.0.3",
"strip-ansi": "^7.1.0",
"systeminformation": "^5.22.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"ws": "^8.18.0",
"yargs": "^17.7.2",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/dockerode": "^3.3.43",
"@types/express": "^4.17.21",
"@types/jaeger-client": "^3.18.7",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.19",
"@types/ssh2": "^1.15.5",
"@types/ssh2-sftp-client": "^9.0.3",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/mcp-console-automation.git"
},
"bugs": {
"url": "https://github.com/yourusername/mcp-console-automation/issues"
},
"homepage": "https://github.com/yourusername/mcp-console-automation#readme"
}