Skip to main content
Glama
rsp2k
by rsp2k

ssh_key_create

Add an SSH public key to your Vultr account for secure server access. Specify a name and the key to enable authentication on new instances.

Instructions

Create a new SSH key.

Args: name: Name for the SSH key ssh_key: The SSH public key (e.g., "ssh-rsa AAAAB3NzaC1yc2...") ctx: FastMCP context for resource change notifications

Returns: Created SSH key information including: - id: SSH key ID - name: SSH key name - ssh_key: The public SSH key - date_created: Creation date

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
ssh_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It states that a new SSH key is created and describes the returned fields, but it does not disclose behavior around duplicate keys, name conflicts, authentication requirements, or whether the operation overwrites. The core side effect is clear, but deeper behavioral context is missing.

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 well-structured with Args and Returns sections and contains no filler. The inclusion of the ctx parameter, which is not in the input schema, adds minor clutter, but overall the description is appropriately sized and front-loaded.

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

Completeness4/5

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

For a simple create tool, the description covers the required parameters, their meaning, and the return payload despite the output schema already existing. It lacks explicit usage guidance and edge-case information, but the low complexity and clear parameter descriptions make it reasonably complete.

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

Parameters4/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 adds meaningful semantics: 'Name for the SSH key' for the name parameter and a concrete example format for ssh_key ('ssh-rsa AAAAB3NzaC1yc2...'). This goes well beyond the bare schema and helps an agent understand expected input format.

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 'Create a new SSH key' with a specific verb and resource, and the Args/Returns sections make the operation unambiguous. Among sibling tools like ssh_key_list, ssh_key_get, ssh_key_update, and ssh_key_delete, the create intent is immediately distinguishable.

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 provided about when to use this tool versus alternatives, such as checking for existing keys with ssh_key_list or modifying with ssh_key_update. There are no context cues, preconditions, or exclusion statements to help an agent decide between this and related 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