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
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | User ID. |
Fetches a specific user's details by user ID, providing targeted user information for backup and BDR resource checks.
Get a single user by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | User ID. |
Changes observed during successful MCP inspections.
v0.1.0Does 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.
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.
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.
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.
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.
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.