package.json•1.7 kB
{
"name": "mcp-ssh-manager",
"version": "1.3.0",
"description": "MCP server with advanced SSH deployment features and profile-based configuration",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"setup": "npm install && pip install -r tools/requirements.txt",
"configure": "python tools/server-manager.py",
"test-connection": "python tools/test-connection.py",
"test": "npm run test:profiles && npm run test:aliases && npm run test:hooks",
"test:profiles": "node tests/test-profiles.js",
"test:aliases": "node tests/test-command-aliases.js",
"test:hooks": "node tests/test-hooks.js",
"test:all": "npm test && ./scripts/validate.sh",
"validate": "./scripts/validate.sh",
"lint": "eslint src/*.js",
"format": "prettier --write 'src/**/*.js' 'tests/**/*.js'"
},
"keywords": [
"mcp",
"ssh",
"claude-code",
"model-context-protocol",
"remote-server",
"ssh-manager",
"deployment",
"devops",
"automation",
"profiles",
"hooks",
"aliases"
],
"author": "MCP SSH Manager Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mcp-ssh-manager.git"
},
"bugs": {
"url": "https://github.com/yourusername/mcp-ssh-manager/issues"
},
"homepage": "https://github.com/yourusername/mcp-ssh-manager#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"dotenv": "^16.4.5",
"ssh2": "^1.17.0",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"eslint": "^8.56.0",
"prettier": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}