Skip to main content
Glama

delete cron job

delete_cron_job
Destructive

Delete a scheduled cron job from HestiaCP by providing the user and job ID, with confirmation required to complete the removal.

Instructions

Delete a cron job. Executes verified command v-delete-cron-job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userYes
jobIdYes
confirmYesExplicit confirmation for a destructive operation

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
errorNo
commandYes

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?

Annotations already indicate destructiveHint=true, readOnlyHint=false, and idempotentHint=false, so the description does not need to restate those. It adds only the underlying command name, with no detail about side effects, irreversibility, failure modes, or authorization requirements.

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 description is very short and front-loaded with the core action. The second sentence adds a small implementation detail. No filler, though the brevity contributes to under-specification in other dimensions.

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?

For a destructive tool with three required parameters, the description lacks usage context, parameter provenance, and behavioral consequences. The annotations and output schema carry some weight, but the description alone is not sufficient to guide correct invocation beyond the obvious.

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 only 33% since only confirm is described. The description does not clarify user, jobId, or where jobId comes from. With low schema coverage, the description should compensate, but it adds no parameter-level meaning.

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 clearly states the action and resource: 'Delete a cron job.' The verb is specific and unambiguous, and the underlying command is named. However, it does not explicitly differentiate this from other delete/list sibling tools, so it misses the top score.

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 is provided about when to use this tool versus alternatives, when not to use it, or prerequisites such as looking up job IDs via list_cron_jobs. The intended use is only implied by the word 'delete.'

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