Skip to main content
Glama
votsie

ssh-mcp

by votsie

ssh_notes_get

Retrieve server facts and notes saved in the MCP server's memory. Use search filters to locate specific details, helping agents recall configured server information quickly for informed decision-making.

Instructions

Прочитать факты и заметки о сервере.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
serverYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'read', which implies a safe read operation, but it does not disclose output format, potential errors, authentication needs, or what distinguishes 'facts' from 'notes'.

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

Conciseness4/5

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

The description is a single efficient sentence with no filler or repetition. It is front-loaded with the action and the resource, though it could be longer to add necessary context without losing conciseness.

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

Completeness2/5

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

Given the large set of sibling tools and the absence of annotations or an output schema, this minimal description is insufficient. It does not explain the return value, pagination behavior, or how this tool relates to ssh_notes_add and ssh_facts_refresh.

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

Parameters2/5

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

The schema has 0% description coverage, so the description must compensate, but it does not explain the meaning of 'limit' or 'query'. It only implies that 'server' is the target server, leaving the other parameters underspecified.

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

Purpose4/5

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

The description uses a clear verb ('read') and identifies the resource ('facts and notes about the server'). It is understandable on its own, though it does not differentiate itself from sibling tools like ssh_notes_add or ssh_facts_refresh.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives. There is no mention of exclusions, such as when to choose ssh_notes_add for writing or ssh_facts_refresh for refreshing facts.

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