generate_host_ssh_key
Generate an SSH key for a host to enable secure SSH authentication and access.
Instructions
Generate host SSH key
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Generate an SSH key for a host to enable secure SSH authentication and access.
Generate host SSH key
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the entire behavioral burden, yet it discloses nothing. It does not say whether generation overwrites an existing key, whether the key is applied immediately, whether elevated permissions are needed, or whether the operation is destructive/reversible.
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?
It is a single short, front-loaded phrase with no filler, which is structurally efficient. But it is a bare fragment rather than a sentence, so its brevity comes from under-specification rather than tight editing.
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?
For a mutation tool with no annotations, no output schema, an undocumented required parameter, and several ambiguous siblings, the description should clarify scope, side effects, and return behavior. None of that is present, so an agent cannot call this tool confidently.
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% for the single required 'id' parameter, and the description adds no clarification (host id? key id? numeric identifier for what?). The word 'host' hints weakly at the domain, but the parameter remains effectively undocumented.
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 names a specific verb (Generate) and resource (host SSH key), which is clear enough as a standalone statement. However it does nothing to distinguish this tool from its many close siblings (get_host_ssh_key, update_host_ssh_key, sync_host_ssh_key, delete_host_ssh_key), leaving the agent to infer the difference from names alone.
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 when-to-use guidance, no mention of prerequisites (e.g., an existing host record), and no routing to alternatives such as sync_host_ssh_key or update_host_ssh_key. The agent must guess both the context and the correct sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.