Skip to main content
Glama
WYRE-AI
by WYRE-AI

umbrella_get_user

Get a specific Umbrella admin user's details via their user ID. Fetches user info for management or verification.

Instructions

Get a specific Umbrella admin console user by user ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userIdYesUmbrella user ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are present, so the description must carry the burden of behavioral disclosure. It only says 'Get', implying a read operation, but does not mention response format, error handling, permissions, or any side effects. The description adds no behavioral detail beyond the implicit read.

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, clear sentence with no redundant words. It is appropriately brief for a simple get-by-ID operation.

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 simple get with one parameter and no output schema, the description is minimally sufficient. However, it does not mention what the response contains (e.g., user details) or any potential error states. Given the simplicity, this is acceptable but not comprehensive.

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?

The schema covers 100% of the parameter (userId) with a description 'Umbrella user ID.' The tool description adds the phrase 'admin console' which provides context that this is an admin console user, not a general user. This is a slight addition, meeting the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (Get), the resource (specific Umbrella admin console user), and the selection criterion (by user ID). It implicitly distinguishes from the sibling umbrella_list_users, which lists users, but does not explicitly name the alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like umbrella_list_users. The description does not state prerequisites, such as having a valid user ID, nor does it mention when not to use it.

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