Skip to main content
Glama
rsp2k
by rsp2k

bare_metal_get_bare_metal_user_data

Retrieve user data for a bare metal server by specifying its label, hostname, or UUID.

Instructions

Get user data for a bare metal server. Smart identifier resolution: use server label, hostname, or UUID.

Args: server_identifier: The bare metal server label, hostname, or ID

Returns: User data information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
server_identifierYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It adds the identifier-resolution behavior (label, hostname, or UUID), which is useful, but it does not disclose side-effect profile, error behavior, or what happens on invalid identifiers. The vague 'Returns: User data information' adds little.

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 short, front-loaded with the main purpose, and every section serves a purpose. The 'Returns: User data information' line is somewhat redundant with the first sentence and the existing output schema, but overall there is no wasted fluff.

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 operation with an output schema, the description is minimally adequate: it states the resource, explains the parameter, and notes the return type. However, it lacks explicit differentiation from sibling bare-metal getters and provides limited behavioral or safety context, which is a gap given there are no annotations.

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

Parameters5/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 for the undocumented server_identifier parameter. It does so fully by explicitly listing accepted identifier forms: server label, hostname, or UUID. This adds real meaning beyond the raw string type in the schema.

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 states a specific verb ('Get') and resource ('user data for a bare metal server'), making the tool's function immediately obvious. This clearly differentiates it from sibling tools like bare_metal_get_bare_metal_server and bare_metal_get_bare_metal_server_summary, which target different data.

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?

Usage is implicitly clear: use this when you need user data for a bare metal server. However, the description does not explicitly say when to use this tool versus alternatives such as get_bare_metal_server or get_bare_metal_server_summary, nor does it mention exclusions.

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