Skip to main content
Glama
WYRE-AI

Slide MCP Server

by WYRE-AI

slide_get_device

Retrieve a single device's complete details by ID, including hardware model, storage usage, warranty, and service status.

Instructions

Get a single device by ID - hardware/service model, storage usage, warranty, and service status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
device_idYesDevice ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It goes beyond the schema by naming the returned content categories, making the read-only nature of the operation clear through 'Get.' It does not mention error behavior or auth, but for a simple getter this is a reasonable disclosure.

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 dense sentence that front-loads the action and resource, then lists the return value categories. There is no filler, repetition, or unnecessary detail.

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 single-parameter getter with no output schema, the description adequately tells an agent what the call will return. The main omissions are error/not-found semantics and explicit guidance about alternative getters, but these are minor for a tool this simple.

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 coverage is 100% and device_id is already described as 'Device ID.' The description only restates 'by ID' and adds no extra format, constraints, or usage context, so the schema is doing the work.

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 names a specific action ('Get') and resource ('a single device by ID') and lists the key data categories returned: hardware/service model, storage usage, warranty, and service status. This clearly distinguishes it from broader list tools and other device-related getters.

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 'by ID' phrasing implies the intended use case: fetch one known device. However, it does not explicitly contrast this tool with sibling tools such as slide_get_device_network or slide_list_devices, so guidance is implicit rather than explicit.

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