Skip to main content
Glama
votsie

ssh-mcp

by votsie

ssh_notes_add

Add persistent server notes that remain available after reboots and new sessions.

Instructions

Записать заметку о сервере — она переживёт перезапуск и новую сессию.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteYes
tagsNo
serverYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose a meaningful trait: the note is durable across restarts and new sessions. It does not, however, describe whether the note overwrites or appends, what authorization is needed, or what the call returns.

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

Conciseness5/5

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

The description is a single, tight sentence that front-loads the core action and the most important behavioral guarantee. Every word adds value and there is no redundancy.

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?

For a write operation with no annotations and no output schema, the description is too sparse. It omits crucial context like whether the note is appended or replaced, how the server is identified, and what happens with tags. The agent is left to infer too much.

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?

Schema description coverage is 0%, so the description must compensate. It only clarifies that the note relates to a server, leaving 'server' identifier format, 'note' content expectations, and the optional 'tags' parameter unexplained.

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 specific verb ('Записать') and resource ('о сервере'), and adds the key property that the note persists across restarts and new sessions. However, it does not explicitly distinguish itself from siblings like ssh_notes_get, so it falls just short of full differentiation.

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 persistence detail implies when the tool should be used: when a server note needs to survive restarts and sessions. But there is no explicit guidance on when not to use it or which alternative to prefer.

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