Skip to main content
Glama
dcianciulli

DefectDojo MCP Server

by dcianciulli

get_current_user

Retrieve the profile of the currently authenticated user to identify their account and permissions.

Instructions

Get the currently authenticated user's profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are supplied, so the description carries the behavioral burden. 'Get' reasonably implies a read-only, idempotent operation, and with no parameters there is little that could be destroyed or misconfigured. However, it says nothing about authentication requirements or whether the result is scoped to the caller's session, leaving the safety/behavior profile to inference.

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?

A single well-formed sentence with no filler, and the distinguishing scope qualifier sits immediately after the verb-resource core.

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 zero-parameter read tool with an output schema covering the return shape, the description provides everything needed to invoke it correctly. The only substantial omission is explicit routing guidance relative to get_user/list_users.

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 takes zero parameters, which is the baseline-for-4 case: there is no argument semantics for the description to explain. The schema is empty and consistent with a self-scoped lookup.

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 and resource ('Get ... user's profile') and adds a scoping qualifier ('currently authenticated') that meaningfully separates it from the sibling get_user, which takes a user identifier. It stops short of naming that sibling explicitly, so the differentiation is implied rather than stated.

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?

There is no explicit when-to-use statement or named alternative, but the phrase 'currently authenticated user' implicitly tells the agent to pick this over get_user when the caller's own identity is wanted. Usage is inferable rather than spelled out.

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