Skip to main content
Glama
WYRE-AI

Slide MCP Server

by WYRE-AI

slide_get_user

Fetches a specific user's details by user ID, providing targeted user information for backup and BDR resource checks.

Instructions

Get a single user by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesUser ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the entire behavioral burden. It clearly signals a read-style operation returning a single record, but it does not disclose behavior for missing IDs, error responses, or authorization requirements. For a simple getter this is adequate, but not rich.

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?

One short, front-loaded sentence contains no filler and conveys the essential operation and lookup key immediately.

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 one-parameter getter with no annotations and no output schema, the description covers the basic selection and invocation details. It is missing an explicit statement of the return shape and failure behavior, which leaves the entry slightly under-specified.

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 description coverage is 100%, and the single parameter user_id is documented in the schema. The description only repeats the ID-based lookup concept without adding format, uniqueness, or source details beyond 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 uses a specific verb ('Get'), a specific resource ('a single user'), and the lookup key ('by ID'). It also differentiates from the siblings slide_list_users and slide_get_user_avatar by emphasizing single-user, ID-based retrieval.

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?

No explicit when-to-use or when-not-to-use guidance is provided, and no alternative tools are named. The usage context is implied: call this when you need one user's data by user ID, as opposed to listing users or fetching an avatar.

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