Skip to main content
Glama

get_user_info

Retrieve detailed Slack user information using a user ID. Get account details for a specific Slack member to resolve user-related questions.

Instructions

Get detailed information about a Slack user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userYesUser ID (e.g., U1234567890)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions 'detailed information' but does not disclose what fields are returned, whether the operation is read-only, any rate limits, or what happens for invalid/unknown user IDs. This is a meaningful gap for an API call tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. It is appropriately concise for a simple tool.

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?

The tool is simple with one parameter and no output schema, so the needed context is minimal. However, the lack of any behavioral disclosure (what 'detailed information' includes, error behavior) leaves minor gaps; the description is adequate but not rich.

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%, so the schema already documents the single parameter. The description adds only 'detailed information', which does not meaningfully clarify the parameter beyond the schema's 'User ID' example. Baseline 3 is appropriate given full 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 states a specific verb ('get') and resource ('detailed information about a Slack user'), making the purpose clear. It does not explicitly differentiate from sibling tools like list_users or get_user_by_email, but the singular 'user' scope helps distinguish it.

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?

The description implies this tool retrieves details for a single user by ID, which suggests usage when a specific Slack user ID is known. It does not state when to use alternatives like get_user_by_email or list_users, leaving some selection guidance to inference.

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