Skip to main content
Glama
dcianciulli

DefectDojo MCP Server

by dcianciulli

add_test_note

Add a note to a test in DefectDojo. Specify the test ID, note content, and optionally set privacy.

Instructions

Add a note to a test.

Args: test_id: The test ID entry: Note text content private: Whether the note is private

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entryYes
privateNo
test_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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 behavioral burden. It does not explain permissions required, whether notes are appended or replaced, rate limits, or the effect of the 'private' flag beyond its literal name, leaving significant behavioral gaps for a mutation tool.

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 purpose is front-loaded in one short sentence, and the args block is compact and free of filler. The Python docstring formatting ('Args:') is boilerplate rather than optimized prose, but nothing is wasted.

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?

For a simple three-parameter mutation with an existing output schema (so return values need no explanation), the description covers the core action and params. It remains thin on permissions and side effects, but the tool's low complexity keeps this adequate rather than incomplete.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must compensate, and it does list all three parameters with brief meanings (test_id, entry, private). The additions are minimal—'test_id: The test ID' is largely tautological—but entry and private gain some clarity not present in the bare schema.

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 ('Add a note to a test'), which is clear and actionable. However, it does not differentiate itself from near-identical siblings such as add_finding_note or add_engagement_note, so the agent must infer which object type applies.

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 explicit when-to-use or when-not-to-use guidance, and no mention of alternatives like list_test_notes or the finding/engagement note tools. Usage is only implied by the tool name.

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