package.json•726 B
{
"name": "mcp-ssh-server",
"version": "1.0.0",
"description": "MCP Server for SSH operations including file copying between servers",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"ssh",
"file-transfer",
"server"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"node-ssh": "^13.2.0",
"ssh2": "^1.15.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/ssh2": "^1.15.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
}
}