ssh_list_dir
List the contents of a remote directory over SSH to inspect files and folders on a server.
Instructions
Показать содержимое каталога на сервере.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| server | Yes | ||
| remote_path | No | . |
List the contents of a remote directory over SSH to inspect files and folders on a server.
Показать содержимое каталога на сервере.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| server | Yes | ||
| remote_path | No | . |
Changes observed during successful MCP inspections.
v0.2.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full disclosure burden. It only states the action; it does not mention how limit affects results, the returned data shape, ordering, hidden files, error behavior, or whether the operation is purely read-only.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. It is appropriately sized for a simple listing tool, though the brevity comes at the cost of missing behavioral/parameter detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations and no output schema, the one-line description is not complete enough for an agent to know what to expect from a call. It omits return format, result limit behavior, and how server/remote_path values should be supplied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description needs to explain the parameters. It adds minimal context by implying remote_path is a directory and server is the remote host, but it leaves limit meaning, defaults, and input constraints unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'show the contents of a directory on the server.' This clearly identifies the operation as a remote directory listing and distinguishes it from file read/run tools in the sibling set, though it does not explicitly differentiate from them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose statement implies when to use it: when the agent needs to list a remote directory. However, it gives no explicit guidance about alternatives such as ssh_file_read or ssh_run, and no conditions for when not to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.