Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

patch_w_asset_assets

Update asset records in ConnectSecure by providing route IDs, filters, pagination, headers, and a request payload to modify asset data.

Instructions

Update asset Calls PATCH /w/asset/assets. 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

B3.1/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 for behavioral disclosure. It reveals that the tool updates assets, but does not mention required permissions, side effects, partial-vs-full update semantics, idempotency, or required header specifics. For a mutating operation, this is thin.

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: it states the operation first, then gives parameter placement in a clear list-like flow. There is no filler, though the phrase 'Update asset Calls' reads slightly awkwardly.

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 mutating tool with no annotations and an essentially empty input schema, an agent still needs more information about which route IDs, query filters, headers, and body fields are valid. The output schema may cover return values, but the request construction is underspecified.

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 input schema is generic with no property descriptions (0% coverage), so the description must compensate. It adds meaningful mapping by explaining that path_params contain route IDs, query contains filters/pagination, headers are required request headers, and body is the request payload. However, it does not name specific filters, header names, or payload fields.

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 identifies the operation as 'Update asset' and explicitly gives the HTTP method/resource `PATCH /w/asset/assets`, so an agent can tell this is an update-style call. It does not explicitly differentiate itself from sibling POST/DELETE asset tools beyond the verb and method, but the verb and endpoint make the core purpose clear.

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 provides useful invocation guidance: route IDs go in path_params, filters/pagination in query, required headers in headers, and payload in body. It does not state when this tool should be used instead of the sibling POST or DELETE asset tools, nor does it mention any preconditions 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