list_directory
List contents of a remote directory on a specified server using MCP SSH Tools Server. Provide server name and optional path to access and manage files efficiently via SSH.
Instructions
列出远程目录内容 参数:
server_name: 服务器名称
path: 目录路径,默认为根目录
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | / | |
server_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"default": "/",
"title": "Path",
"type": "string"
},
"server_name": {
"title": "Server Name",
"type": "string"
}
},
"required": [
"server_name"
],
"title": "list_directoryArguments",
"type": "object"
}