sftp-ssh-mcp
sftp-ssh-mcpは、JavaScriptで実装されたSFTPおよびSSHプロトコルを使用して安全なファイル転送を行うためのライブラリです。このライブラリは、ユーザーがリモートサーバーと安全に接続し、ファイルのアップロードやダウンロードを簡単に行えるように設計されています。使いやすさとセキュリティを両立させており、開発者にとって便利なツールです。
GitHubスター
4
ユーザー評価
未評価
お気に入り
0
閲覧数
56
フォーク
0
イシュー
0
README
SFTP-SSH MCP Server is a local Model Context Protocol (MCP) server that exposes SFTP-SSH control for Linux and Windows systems, enabling LLMs and other MCP clients to execute shell commands securely via SSH.
Client Setup
You can configure Claude Desktop to use this MCP Server.
host: Hostname or IP of the Linux or Windows serverport: SSH port (default: 22)user: SSH usernamepassword: SSH password (or usekeyfor key-based auth) (optional)key: Path to private SSH key (optional)
{
"mcpServers": {
"sftp-ssh-mcp": {
"command": "npx",
"args": [
"sftp-ssh-mcp",
"-y",
"--",
"--host=1.2.3.4",
"--port=22",
"--user=root",
"--password=pass",
"--key=path/to/key"
]
}
}
}