Skip to main content
Glama
dcianciulli

DefectDojo MCP Server

by dcianciulli

create_organization

Create a new organization (product type) in DefectDojo to group products, with options to flag as critical or key product.

Instructions

Create a new organization (product type).

Args: name: Organization name description: Description critical_product: Is critical product flag key_product: Is key product flag

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
descriptionNo
key_productNo
critical_productNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it only implies a creation/mutation. It says nothing about required permissions, uniqueness or duplicate-name behavior, side effects, or error conditions for a write operation.

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 lead sentence is front-loaded and the description is short. The Args block largely duplicates the input schema titles, adding bulk with little value, but it is not egregiously long.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/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 values need not be described. But for a creation tool with no annotations and 0% parameter coverage, the description omits auth requirements, duplicate handling, and field meaning, leaving the definition under-specified.

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%, so the description must compensate. It lists the four parameters but only restates their titles ('name: Organization name', 'description: Description', 'critical_product: Is critical product flag'), adding no real semantics such as what 'critical product' or 'key product' actually mean.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource ('Create a new organization'), which is clear enough on its own. However, the parenthetical '(product type)' is ambiguous and, rather than distinguishing this tool from the sibling create_product, it muddies the relationship between the two. No sibling differentiation is provided.

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?

The description provides no when-to-use guidance, no prerequisites, and no mention of alternatives such as create_product or update_organization. The agent is left to infer the context entirely from the tool name.

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