Skip to main content
Glama
Anou4r
by Anou4r

superchat_get_user

Read-onlyIdempotent

Retrieve a specific workspace user's details by providing their unique user ID.

Instructions

Read one workspace user's details by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesSuperchat user ID, for example one returned by list_users.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiveHint=false, so the description need not repeat safety traits. It adds the scoping detail that this reads one workspace user, but does not disclose additional behaviors such as error handling or return format. This is acceptable given the simple read operation and strong annotations.

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 sentence with no filler. The action, resource, and scope are front-loaded, making it immediately actionable for an agent.

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 get-by-ID tool with one well-documented parameter and annotations covering safety, the description is nearly complete. It does not describe the response shape or not-found behavior, but the low complexity and strong schema/annotation coverage make this a minor gap.

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 coverage is 100%, and the user_id parameter already has a description with an example source (list_users). The description's 'by ID' adds no new semantic detail beyond what the schema provides, so the baseline score of 3 is appropriate.

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 uses a specific verb ('Read'), identifies the resource ('one workspace user's details'), and specifies the access method ('by ID'). This clearly distinguishes it from sibling tools like list_users (which reads all users) and get_me (which reads the current user).

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

Usage Guidelines4/5

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

The description clearly implies the tool is for fetching a single user's details when the user ID is known. It does not explicitly name alternatives or state when not to use it, but the context is clear enough for an agent to select it appropriately.

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