Skip to main content
Glama

Get Current Redmine User

redmine_get_current_user
Read-onlyIdempotent

Identify the authenticated Redmine user and optionally return their project memberships with roles to suggest focus projects.

Instructions

Get information about the currently authenticated user (based on the API key).

Args:

  • include_memberships: Also return the projects the user is a member of, with roles. Used to suggest focus projects when capturing user preferences.

Returns: User details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_membershipsNoAlso return project memberships (useful for suggesting focus projects)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.1

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, so the safety profile is covered. The description adds the authentication context ('based on the API key') and clarifies the optional membership data. It does not describe rate limits, error behavior, or the exact structure of the returned user details, but given the annotation coverage, a 3 is appropriate.

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 concise: one main sentence, an Args section for the single parameter, and a Returns line. It is well-structured and front-loaded with the core purpose. There is no fluff, though it could be slightly more formal, but it earns a 4.

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 operation with one optional parameter and no output schema, the description is adequate. It covers the essential purpose, the parameter's effect, and indicates the return type. It lacks explicit error handling or field details, but given the tool's simplicity and annotation coverage, it is sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with the parameter include_memberships already described. The description goes further by explaining it returns projects and roles, and ties it to a use case (suggesting focus projects). This adds meaningful context beyond the schema's one-liner, so a 4 is warranted.

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 ('currently authenticated user'), and clarifies authentication via API key. It is distinct from sibling tools like redmine_get_my_context or redmine_list_users, though it doesn't explicitly name alternatives. The purpose is clear and unambiguous.

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?

There is no guidance on when to use this tool versus alternatives. The description does not mention exclusions or prerequisites, nor does it compare with similar read tools like redmine_get_my_context. The only contextual hint is the parameter's use case, not the tool's usage scenario.

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