get_host_ssh_logs
Retrieve SSH logs from the host to monitor access and detect unauthorized login attempts. Useful for security auditing and troubleshooting.
Instructions
Get host SSH logs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve SSH logs from the host to monitor access and detect unauthorized login attempts. Useful for security auditing and troubleshooting.
Get host SSH logs
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. 'Get' implies a read-only operation, but nothing is disclosed about scope, time range, pagination, or how much log data is returned, which matters for a log-retrieval tool that could return large output.
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?
A single four-word sentence with zero padding and the resource front-loaded. It is efficient, though its brevity is partly under-specification rather than disciplined concision.
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, no output schema, and no parameters, the description is the only source of information and it says nothing about which host's logs, what the log format is, or how results are bounded. For a zero-parameter log-fetch tool this leaves real ambiguity.
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?
The tool takes zero parameters, so per the baseline there is nothing for the description to clarify beyond what the empty schema already communicates. No syntax or filtering semantics are needed or missing.
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 gives a specific verb ('Get') and resource ('host SSH logs'), so an agent immediately knows what data is retrieved. However, it does nothing to distinguish itself from adjacent log/host tools such as get_host_ssh_conf, list_system_logs, or get_task_logs, which is exactly the ambiguity a 4 denotes.
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?
There is no guidance on when to call this versus sibling tools, no prerequisites (e.g., a host must exist or SSH must be configured), and no exclusions. The description is purely a restatement of the tool's subject matter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.