Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

delete_d_company_custom_profile_id

Delete a company's custom profile by ID to remove unneeded profiles and streamline your asset management.

Instructions

Delete custom profile Calls DELETE /d/company/custom_profile/{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

A3.5/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 states the action and HTTP method but does not disclose whether deletion is permanent, what side effects occur, what authentication is required, or what the successful response looks like. This is a meaningful gap for a destructive operation.

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?

The description is extremely compact: one sentence states the purpose and endpoint, and a second sentence maps the parameters to their locations. There is no redundant wording or filler, and the most important information is front-loaded.

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 description is sufficient for a simple HTTP delete call with an output schema available, but it omits specifics such as the expected path parameter key, whether the body should be null/omitted, and which filters or headers are relevant. For a destructive op with no annotations, more context would help ensure correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage with four generic parameter objects. The description compensates partially by assigning roles: path_params for route IDs, query for filters and pagination, and headers for request headers. However, it does not explain the body parameter at all and gives no concrete examples or required header names.

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

Purpose5/5

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

The description clearly identifies the operation: 'Delete custom profile' and specifies the exact HTTP endpoint. This distinguishes it from sibling tools like get_r_company_custom_profile_id, post_w_company_custom_profile, and patch_w_company_custom_profile, which target the same resource with different verbs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives some invocation guidance by telling the agent to put route IDs in path_params, filters/pagination in query, and headers in headers. However, it does not explicitly state when to choose this tool over the get/post/patch siblings for the same resource, nor does it mention any prerequisites or exclusions.

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