Skip to main content
Glama
tspvivek
by tspvivek

baasix_get_current_user

Retrieve the authenticated user's profile, including assigned role and permissions, to verify access rights for Baasix backend operations.

Instructions

Get current user information with role and permissions

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsNoSpecific fields to retrieve

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

B3.1/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 of behavioral disclosure. It states this is a read operation but does not mention session requirements, behavior when no user is logged in, or possible error cases. This is minimal transparency for a tool that depends on auth context.

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, front-loaded sentence with no filler. Every word contributes to conveying the tool's purpose.

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?

This is a simple getter with one optional parameter, so a short description can be acceptable. However, with no output schema and no annotations, the description does not clarify the return shape, whether authentication is required, or how the 'fields' parameter affects the result. These are meaningful gaps for an agent deciding to call it.

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?

The single parameter 'fields' is already fully described in the schema as 'Specific fields to retrieve', giving 100% schema coverage. The description adds no additional parameter detail, 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.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Get' and clearly identifies the resource: current user information, including role and permissions. It is reasonably distinct from sibling tools like baasix_auth_status or baasix_get_user_tenants, though it does not explicitly contrast itself with them.

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

Usage Guidelines2/5

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 the many related auth/user sibling tools, nor does it mention prerequisites such as being logged in. The intended usage is only implied by the tool's purpose.

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