Skip to main content
Glama
dcianciulli

DefectDojo MCP Server

by dcianciulli

get_celery_status

Check Celery worker liveness and pending queue length in DefectDojo to detect stalled background tasks and verify configuration.

Instructions

Get Celery worker and queue status.

Returns worker liveness, pending queue length, and configuration.

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.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses the three return categories (liveness, queue length, configuration), which is useful, but says nothing about freshness, cost, permissions, or whether it is read-only. Adequate but with clear gaps.

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?

Two sentences, front-loaded with the purpose, then a compact enumeration of the return values. Nothing wasted.

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?

An output schema exists, so the description needn't explain return structure, and it sensibly summarizes the return categories instead. Combined with zero parameters this is largely complete; only the missing sibling differentiation and usage context keep it short of 5.

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?

Parameter count is 0, so the baseline is 4. The description correctly introduces no parameter concepts and needs none.

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 (Celery worker and queue status), and names the returned fields. Siblings get_celery_queue_details and purge_celery_queue are related, but the description doesn't explicitly differentiate itself from get_celery_queue_details, so it falls short of a 5.

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 when-to-use guidance, no conditions, and no mention of alternatives despite get_celery_queue_details being a clear sibling for queue-specific inspection. The agent is left to infer that this is the general overview tool.

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