package.json•1.5 kB
{
"name": "ssh-mcp",
"license": "MIT",
"version": "1.0.12",
"description": "MCP server exposing SSH control for Linux and Windows systems via Model Context Protocol.",
"type": "module",
"bin": {
"ssh-mcp": "build/index.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc && shx chmod +x build/*.js",
"inspect": "npx @modelcontextprotocol/inspector node build/index.js",
"test": "cross-env SSH_MCP_DISABLE_MAIN=1 vitest --run",
"test:watch": "cross-env SSH_MCP_DISABLE_MAIN=1 vitest",
"coverage": "cross-env SSH_MCP_DISABLE_MAIN=1 vitest --run --coverage"
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"ssh2": "^1.17.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/ssh2": "^1.15.5",
"cross-env": "^7.0.3",
"shx": "^0.4.0",
"testcontainers": "^11.7.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"homepage": "https://github.com/tufantunc/ssh-mcp#readme",
"repository": {
"type": "git",
"url": "https://github.com/tufantunc/ssh-mcp.git"
},
"bugs": {
"url": "https://github.com/tufantunc/ssh-mcp/issues"
},
"keywords": [
"ssh",
"mcp",
"model-context-protocol",
"server",
"windows",
"linux",
"automation",
"remote",
"cli",
"typescript"
],
"author": "tufantunc",
"engines": {
"node": ">=18"
}
}