Skip to main content
Glama
dcianciulli

DefectDojo MCP Server

by dcianciulli

get_product

Retrieve detailed information about a specific product from DefectDojo using its product ID.

Instructions

Get a single product by ID.

Args: product_id: The product ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
product_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/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 burden of behavioral disclosure. It implies a read operation but says nothing about auth/permission requirements, error behavior when the ID does not exist, or any side effects, which is a meaningful gap for a tool with zero annotation coverage.

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 sentence is front-loaded and terse, but the 'Args:' block duplicates what the input schema already declares, so it does not earn its place. The result is brief but not optimally structured.

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?

The tool is simple (one required integer param) and an output schema exists to describe return values, so the description is not required to explain the response shape. Still, it omits any note on failure modes or lookup semantics, leaving it minimally adequate rather than complete.

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 description's 'product_id: The product ID' merely restates the parameter name and type already visible in the schema. No format, range, or source-of-value guidance is added, so the description does not 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?

The description states a specific verb and resource ('Get a single product by ID'), which clearly separates it from the list_products and create/update/delete_product siblings by implying retrieval of exactly one entity. However, it never names those siblings or explains the retrieval scope (e.g., what a 'product' contains), so it stops short of full differentiation.

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 guidance on when to use this tool versus list_products or get_product-adjacent lookups, and no mention of prerequisites. 'By ID' is the only hint of the usage condition, which an agent must infer.

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