Skip to main content
Glama
Vijay-Duke
by Vijay-Duke

get_confluence_current_user

Retrieves the current authenticated Confluence user's profile details, including account ID, display name, email, and profile picture.

Instructions

Get details of the authenticated Confluence user. Returns information about the current user including account ID, display name, email, and profile picture.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It communicates that the operation is a read-style lookup ('Get details'), that it applies to the authenticated user, and what data will be returned. It does not discuss errors or edge cases, but for a simple no-parameter read tool this is not a significant gap.

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, well-structured sentence that front-loads the verb and resource, then adds useful return-field details. There is no filler or redundant information.

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 zero-parameter read-only tool without an output schema, the description is complete: it states the operation, identifies the target user, and enumerates key returned fields. An agent has enough information to invoke this tool correctly without needing additional context.

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?

The tool has zero parameters, so the description does not need to explain parameter semantics. The phrase 'authenticated Confluence user' clarifies the implicit scope of the operation, which is the baseline expectation for a no-parameter tool.

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 action ('Get details') and the resource ('authenticated Confluence user'), and it lists the returned fields. It is also easily distinguished from sibling tools like get_confluence_user (lookup of a specific user) and get_jira_current_user (Jira current user) because it explicitly scopes to the Confluence current user.

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

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear use case: retrieve the profile of the authenticated Confluence user. It does not explicitly call out alternatives or when not to use this tool, but for a zero-parameter retrieval tool the context is clear enough for an agent to select it appropriately.

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