Skip to main content
Glama
dcianciulli

DefectDojo MCP Server

by dcianciulli

get_test

Retrieve a single test by ID to access its detailed information in DefectDojo's vulnerability management platform.

Instructions

Get a single test by ID.

Args: test_id: The test ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
test_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/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 disclosure burden and delivers almost nothing beyond 'it retrieves'. It does not state that the operation is read-only, whether it requires authentication or specific permissions, or how a missing/invalid test ID is surfaced. For a lookup tool this is a real gap.

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 one-line purpose is front-loaded and free of padding. The boilerplate 'Args:' block is redundant against the schema but adds negligible length.

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?

An output schema exists, so return-value documentation is not required. However, with no annotations and no error/not-found behavior described, a mutation-free but failure-prone lookup is only minimally covered.

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

Parameters2/5

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

Schema description coverage is 0%, and the only argument note ('test_id: The test ID') merely restates the schema property name. It adds no information about ID format, where the ID originates, or whether it must be an existing test, so it fails to compensate for the coverage gap.

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?

States a specific verb (Get) and resource (a single test) with the lookup key (by ID), which is unambiguous. It does not differentiate itself from siblings such as list_tests or get_product/get_finding, but the resource is distinct enough that an agent can route correctly.

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?

No guidance on when to use this versus list_tests (to enumerate tests) or the update/delete_test siblings. There are no stated prerequisites, no mention of what happens if the ID is unknown, and no indication that the ID must come from a prior list call.

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