get-user
Retrieve user details from n8n automation instances using ID or email address to manage access and permissions.
Instructions
Get user by ID or email address.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clientId | Yes | ||
| idOrEmail | Yes |
Retrieve user details from n8n automation instances using ID or email address to manage access and permissions.
Get user by ID or email address.
| Name | Required | Description | Default |
|---|---|---|---|
| clientId | Yes | ||
| idOrEmail | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states it 'Get[s] user' but doesn't clarify if this is a read-only operation, what permissions are required, whether it returns partial or full user data, or error handling (e.g., for invalid IDs). The description lacks critical behavioral traits like safety, response format, or rate limits, leaving significant gaps for an agent.
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 extremely concise with a single sentence ('Get user by ID or email address.') that front-loads the core purpose. Every word earns its place, avoiding redundancy or fluff, making it efficient for quick comprehension by an agent.
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?
Given the tool's moderate complexity (2 required parameters), no annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like read/write nature, error cases, or return values, and parameter guidance is insufficient. For a user retrieval tool in a system with multiple user-related operations, more context is needed to ensure correct agent usage.
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 0%, so the description must compensate but adds minimal value. It mentions 'ID or email address', which loosely relates to 'idOrEmail', but doesn't explain the 'clientId' parameter at all or provide format details (e.g., email syntax, ID constraints). With 2 undocumented parameters, the description fails to adequately clarify their semantics beyond a vague hint.
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 resource ('user'), specifying it can be retrieved by 'ID or email address'. It distinguishes from siblings like 'list-users' (which retrieves multiple users) by focusing on single-user lookup. However, it doesn't explicitly contrast with 'delete-user' or 'create-users', leaving some sibling differentiation incomplete.
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. It doesn't mention when to prefer 'get-user' over 'list-users' for single-user queries, nor does it address prerequisites like authentication or context for using 'idOrEmail' versus 'clientId'. There's no explicit when/when-not or alternative tool references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.