Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

delete_d_company_backup_software_id

Remove backup software from a company record using its ID. Delete specified backup software entries to clean up company asset data.

Instructions

Delete backup software Calls DELETE /d/company/backup_software/{id}. Provide route IDs in path_params, filters and pagination in query, and any required request headers in headers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
queryNo
headersNo
path_paramsNo

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?

Annotations are absent, so the description carries the full burden here. It communicates that this is a destructive DELETE operation, but it does not disclose side effects, irreversibility, permission requirements, error behavior, or what happens if the target does not exist.

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 short and front-loaded with the purpose. The second sentence adds parameter-placement information without excessive verbosity, though it is somewhat formulaic and generic.

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?

Given the open-ended schema, no annotations, and 0% schema coverage, the description is not complete enough for an agent to confidently construct the required path parameter or understand what is required. An output schema exists, so return-value details are less necessary, but the deletion behavior and parameter requirements remain underspecified.

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 coverage is 0%, so the description must compensate for undocumented parameters. It does provide general placement hints ('route IDs in path_params', 'filters and pagination in query', 'any required request headers in headers'), but it does not specify actual key names, required values, or formats. The body parameter is not mentioned at all.

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 ('Delete backup software') and gives the exact endpoint (`DELETE /d/company/backup_software/{id}`), making the core purpose obvious. It does not explicitly contrast with sibling get/post/patch backup_software tools, but the verb and endpoint are specific enough to distinguish them.

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 gives no guidance on when to use this delete tool versus its get/post/patch siblings, nor does it mention prerequisites or alternatives. An agent must infer usage solely from the HTTP method and resource name.

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

Deploy Server

Other Tools