Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

patch_w_company_custom_ticketing_template

Update an existing custom ticketing template by sending a PATCH request. Specify route IDs, query filters, headers, and payload to modify the template.

Instructions

Update custom ticketing template Calls PATCH /w/company/custom_ticketing_template. Provide route IDs in path_params, filters and pagination in query, and any required request headers in headers. Provide the request payload in body.

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

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

With no annotations provided, the description must carry the full burden of behavioral disclosure. It only states 'Update' and 'PATCH,' which imply mutation, but it does not describe whether the update is partial or full, whether it is idempotent, what authorization is required, or what happens when the target template does not exist. This is insufficient for a mutation tool.

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 compact and front-loaded with the purpose and endpoint. The second sentence efficiently lists how each parameter container should be used. The missing punctuation between 'template' and 'Calls' is a minor readability issue, but the overall structure is reasonably efficient.

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 tool with no annotations and an effectively empty schema, the description is under-specified. It does not identify required path parameters, body structure, filter names, pagination format, or error scenarios. The presence of an output schema helps for return values, but the request contract remains too vague for confident 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% property coverage, so the description must compensate. It does map the four generic containers to their HTTP roles: route IDs in path_params, filters and pagination in query, request headers in headers, and payload in body. However, it names no concrete fields, route ID keys, pagination parameters, or body properties, leaving an agent unable to construct a specific, correct request.

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 opens with a clear verb and resource: 'Update custom ticketing template,' and reinforces it with the endpoint PATCH /w/company/custom_ticketing_template. It is clearly an update operation, but it does not explicitly differentiate itself from the sibling create/get/delete template tools beyond the verb and HTTP method.

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 given on when to use this tool versus post_w_company_custom_ticketing_template or get_r_company_custom_ticketing_template. The description explains where to place parameters but not when PATCH is the appropriate choice, what prerequisites exist, or what alternatives should be considered.

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