Skip to main content
Glama

Get my Redmine account

get_my_account
Read-onlyIdempotent

Retrieve the authenticated user's own Redmine account profile and visible custom fields. Read-only operation that returns safe fields and the /my/account URL, without exposing API key or admin flags.

Instructions

Read the current user's own Redmine account from GET /my/account.json for the configured API credentials. This endpoint accepts an empty object only and sends no query, include, pagination, or administrator controls. The result allowlists the official account view's safe profile fields and visible custom fields, strips the API key and administrator flag, preserves explicit nulls and omitted version-dependent fields, and adds the ordinary-user /my/account browser URL. Redmine may return HTTP 401 or 403 when credentials are rejected or the endpoint is not permitted. This tool never changes Redmine data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYes
emailNo
loginYes
lastNameYes
createdOnNo
firstNameYes
lastLoginOnNo
customFieldsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

The description goes well beyond the annotations. It confirms read-only, idempotent, and non-destructive behavior as annotations, but adds specific behavioral details: 'preserves explicit nulls and omitted version-dependent fields', 'strips the API key and administrator flag', and 'adds the ordinary-user /my/account browser URL'. It also discloses possible HTTP 401 or 403 responses. This is rich, useful context that annotations do not provide.

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

Conciseness3/5

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

The description is informative but long, containing multiple clauses about field stripping, null preservation, and URL addition. While each sentence adds value, the description is dense and could be front-loaded with the core purpose. The first sentence is clear, but the subsequent details make it wordy. It is not overly verbose, but there is room for better structure.

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?

Given the zero parameters, rich annotations, and an available output schema, the description is complete. It covers the endpoint's input expectations, behavioral transformations, error conditions, and safety. The agent has all necessary information to invoke the tool correctly without further inference. The output schema handles return details.

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

Parameters5/5

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

With zero parameters, the schema provides no parameter details. The description compensates by explaining that the endpoint accepts an empty object only and sends no query/include/pagination controls. This is crucial for an agent to know that no parameters are needed and that the tool has no configuration options. The baseline for 0 params is 4, but the explicit statement about the empty object and lack of controls pushes it to 5.

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 clearly states the tool reads the current user's own Redmine account data from a specific endpoint, and it names the endpoint and HTTP method, distinguishing it from sibling tools like get_current_user and get_user. It is explicit about scope ('current user's own') and action ('Read'), fully differentiating it from other read tools.

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 does not explicitly state when to use this tool versus alternatives, nor does it mention alternatives like get_current_user. It implies it is for reading the current user's account, but an agent might not know when to choose this over get_current_user or get_user. No exclusions are given for when not to use it.

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