Skip to main content
Glama

Get user

vital_get_user
Read-only

Get a single Vital user by their Vital user_id. Vital API: GET /v2/user/{user_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesThe Vital user id (UUID).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only safety profile is covered. The description adds that this is a single-user lookup by ID and references the exact API endpoint, which is mildly useful, but it does not describe response shape, error cases, or any additional behavioral traits beyond what annotations already signal.

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 two short sentences with no filler. The core action and target are front-loaded, and the API endpoint reference is concise and useful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter, read-only GET operation with 100% schema coverage, the description plus annotations and schema provide everything an agent needs to invoke the tool correctly. No output schema exists, but return details are not necessary for correct invocation here.

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%, and the single parameter user_id is already described as 'The Vital user id (UUID).' The description repeats this concept ('by their Vital user_id') and adds the endpoint path variable, but it does not materially enrich the parameter semantics beyond the schema.

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 states a specific verb ('Get'), a specific resource ('a single Vital user'), and the lookup key ('by their Vital user_id'). This clearly differentiates it from sibling tools like vital_list_users and vital_resolve_user without requiring the agent to infer scope.

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 usage: call this when you have a known Vital user_id and need that single user. However, it does not explicitly state when to prefer this over alternatives such as vital_list_users, vital_resolve_user, or vital_get_profile, nor does it give exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.