Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

patch_w_integration_integration_rules

Update integration rules by sending PATCH requests, specifying route IDs in path parameters, filters/pagination in query, and payload in body.

Instructions

Update integration rule Calls PATCH /w/integration/integration_rules. 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.4/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 only states that this is a PATCH update and where parameters go, without covering partial-update semantics, required permissions, side effects, or error behavior. This is a significant gap for a mutating tool.

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?

Two sentences, front-loaded with the endpoint and method, with no filler. Every sentence adds information needed to construct the request.

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 4-parameter mutation tool with no annotations and a fully generic schema, the description is too thin. It lacks required-field details, update semantics, and any mention of authentication or error conditions. The output schema covers return shape, but request construction remains under-specified.

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?

With 0% schema coverage, the description compensates by mapping each generic parameter slot to an HTTP role: path IDs, query filters/pagination, headers, and body. However, it does not name actual fields or provide any payload structure, leaving the agent to guess at concrete integration rule data.

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 as updating an integration rule and gives the exact HTTP endpoint and method. This distinguishes it from sibling create/get/delete integration rule tools.

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 clear parameter placement instructions but no explicit when-to-use guidance or alternatives. The update semantics are implied by the verb and PATCH method, but siblings like post_w_integration_integration_rules are not mentioned as the create alternative.

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