Skip to main content
Glama

Get SSH host by ID

termix_hosts_get_ssh_host_id
Read-onlyIdempotent

Retrieves a specific SSH host by its unique ID from a Termix instance, providing host details for remote management and automation tasks.

Instructions

Get SSH host by ID. Retrieves a specific SSH host by its ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description's 'retrieves' is consistent with those. The description adds no further behavioral detail such as return shape, not-found behavior, or error semantics, but the annotations cover the safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short, but it is redundant: 'Get SSH host by ID' and 'Retrieves a specific SSH host by its ID' say essentially the same thing. The first sentence duplicates the title, so not every sentence earns its place, though there is no significant bloat.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read-only getter, the description is mostly sufficient, but there is no output schema and no statement about what the returned SSH host object contains or what happens when the ID is not found. It also does not point to the sibling list tool as the source of valid IDs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must carry the meaning of the id parameter. It does say the id identifies a specific SSH host, but it doesn't explain where the ID comes from or how it relates to other host tools. Still, for a simple get-by-ID operation, this is adequate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb ('Get'/'Retrieves') and resource ('SSH host') with a distinguishing identifier criterion ('by ID'). This separates it from list-oriented siblings such as termix_hosts_get_all_ssh_hosts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'by its ID' implies the tool is for fetching a single, known SSH host, but it never explicitly names alternatives or states when not to use it. There is enough implied context to guess usage, but no direct guidance versus sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools