get_user
Retrieve a specific Zendesk user by ID to access their profile and details. Use this to fetch user information when you know the user's ID.
Instructions
Get a specific user by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | User ID |
Retrieve a specific Zendesk user by ID to access their profile and details. Use this to fetch user information when you know the user's ID.
Get a specific user by ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | User ID |
Changes observed during successful MCP inspections.
v1.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description does not need to repeat that the operation is read-only. The description adds no additional behavioral context such as response format or error handling, but it does not contradict the annotations.
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?
The description is a single, efficient sentence with no unnecessary words, front-loading the action and resource. Every word earns its place.
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 simple get-by-ID tool with annotations covering read-only behavior, the description is minimally adequate. However, it lacks usage guidance to differentiate it from list_users and does not specify any return structure, which could be inferred from similar tools.
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?
The schema fully describes the single parameter 'id' as 'User ID' with 100% coverage. The description adds no extra semantic meaning beyond the schema, so the baseline of 3 is appropriate.
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 clearly states the verb 'Get' and the resource 'specific user by ID', which unambiguously identifies it as a single-user retrieval operation. It is distinct from list_users and mutation tools, making its purpose immediately clear.
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?
The description provides no guidance on when to use this tool versus alternatives like list_users. It does not mention that it is intended for retrieving a user when the ID is known, nor does it state any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.