Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

update_http_integration

Update a custom HTTP delivery integration by changing only the fields you specify, such as URL, headers, authentication, or alert payloads, while leaving all other settings unchanged.

Instructions

Update a Custom HTTP Delivery integration via PATCH. Only fields explicitly provided are sent; omitted fields keep their current server values. (requires write permission)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNo
nameNo
ack_urlNo
headersNo
ack_bodyNo
passwordNo
usernameNo
clear_urlNo
ack_methodNo
alert_bodyNo
clear_bodyNo
update_urlNo
ack_headersNo
descriptionNo
http_methodNo
update_bodyNo
clear_methodNo
extra_fieldsNo
clear_headersNo
update_methodNo
integration_idYesIntegration ID
update_headersNo
alert_data_typeNo
alert_body_formatNo
enabled_lifecyclesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already indicate a write operation (readOnlyHint=false). The description adds valuable context: it discloses the PATCH semantics (only provided fields sent) and the write-permission requirement. This goes beyond annotations and is consistent with them.

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 two sentences, front-loads the core purpose, then the behavioral nuance and permission. No wasted words; efficiently structured.

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?

With 25 parameters, no output schema, and only a generic mention of partial updates, the description is too thin. It does not cover expected response behavior, parameter constraints, or field formats, leaving agents with insufficient context for a complex mutation tool.

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 description coverage is only 4% (only integration_id is described). The description mentions 'fields' generically but does not explain any specific parameter. It does not compensate for the low schema coverage, leaving the 24 other parameters largely undefined.

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 states the verb ('Update'), the resource ('Custom HTTP Delivery integration'), and the method ('via PATCH'). It is specific and distinguishes from sibling tools like create_http_integration and delete_integration.

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?

It explains the partial-update behavior and the permission requirement, but it does not explicitly state when to use this tool over alternatives (e.g., create vs update). The context of siblings implies usage, but no explicit routing is given.

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