package.json•1.12 kB
{
"name": "mcpssh-streamable",
"version": "2.0.0",
"description": "MCP SSH Server with Streamable HTTP support for SSE clients",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"start:mcp": "node dist/mcp-http-server.js",
"dev:mcp": "tsx src/mcp-http-server.ts",
"start:streamable": "tsx src/mcp-streamable-http-server.ts",
"dev:streamable": "tsx src/mcp-streamable-http-server.ts",
"start:all": "npm run start:mcp & npm run start:streamable"
},
"keywords": ["mcp", "ssh", "streamable-http", "sse", "remote-control"],
"author": "TimeXingjian",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.0.3",
"@types/ssh2": "^1.15.5",
"@types/ws": "^8.18.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"ssh2": "^1.16.0",
"ssh2-sftp-client": "^12.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"ws": "^8.18.2",
"hono": "^4.0.0",
"fetch-to-node": "^0.1.1"
}
}