Skip to main content
Glama

yougile_get_user

Read-only

Fetch a specific user's details by entering their UUID. Access user information for project management and team coordination in YouGile.

Instructions

Get details of a specific user by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesUser UUID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.5

TDQS

A3.8/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true and destructiveHint=false, fully covering the safety profile. The description adds no additional behavioral context beyond the operation itself; it does not mention response format, errors, or permissions, but given the strong annotation coverage, a baseline score is appropriate.

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, concise sentence that directly states the action and target. No unnecessary words or redundancy.

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 one-parameter read-only tool with annotations, the description is mostly complete. However, it lacks any hint about return values or error behavior, and no output schema exists to fill that gap, leaving minor uncertainty.

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%, with the 'id' parameter described as 'User UUID'. The description only mentions 'by ID' without adding further meaning, so the baseline of 3 applies.

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 'Get details of a specific user by ID' clearly identifies the action (get), resource (user), and scope (specific user by ID). It distinguishes this from sibling tools like yougile_list_users, which lists all users, and yougile_get_project, which targets a different resource.

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 usage guidance or alternatives are provided. The context is implied: use when needing a single user by ID, but there is no comparison with yougile_list_users or mention of prerequisites like needing to look up the ID first.

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