Skip to main content
Glama
ryanmat

io.github.ryanmat/logicmonitor

by ryanmat

create_http_integration

Create a custom HTTP webhook integration to send LogicMonitor alert lifecycle notifications to any endpoint, with support for custom headers, payloads, and OAuth.

Instructions

Create a Custom HTTP Delivery integration (type=http). Required fields: name, url. Use extra_fields for OAuth, actionNotes*, updateData*, or the 'extra' UI metadata blob. (requires write permission)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesWebhook URL for the active alert lifecycle
nameYesIntegration display name
ack_urlNoOverride URL for ack
headersNoHeaders for active alerts. Accepts a plain {name: value} dict or a list of {HeaderName: value} single-key dicts (LM's native form).
ack_bodyNoOverride payload for ack
passwordNoBasic-auth password
usernameNoBasic-auth username
clear_urlNoOverride URL for clear
ack_methodNoOverride HTTP verb for ack
alert_bodyNoPayload template. Supports LM ##TOKEN## substitutions such as ##ALERTID##, ##LEVEL##, ##HOST##.
clear_bodyNo
update_urlNoOverride URL for update
ack_headersNoOverride headers for ack (same shape as headers).
descriptionNoOptional description
http_methodNoHTTP verb for active alert postspost
update_bodyNo
clear_methodNo
extra_fieldsNoRaw LM integration fields merged last. Use for OAuth credentials (oAuthClientId, etc.), updateData*, actionNotes*, and the 'extra' UI metadata string.
clear_headersNo
update_methodNo
update_headersNo
alert_data_typeNoLM alert data type, typically 'raw' or 'formatted'.
alert_body_formatNoPayload format (json or form).json
enabled_lifecyclesNoSubset of ['active', 'ack', 'clear', 'update', 'actionNotes', 'updateData']. Defaults to the four core lifecycles.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.2.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already signal readOnlyHint=false and destructiveHint=false, so the description's 'Create' is consistent. The description adds the write-permission requirement and the extra_fields merge behavior, which are useful context. It doesn't address idempotency or failure modes, but with annotations covering the core safety profile, this is adequate.

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 three short sentences, front-loaded with the action and type. The permission note and extra_fields hint are useful, though the extra_fields detail partially duplicates schema content. There is no wasted wording, and the structure is easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 24-parameter tool with a rich schema, the description covers the essentials: what is created, required fields, special-field routing, and permission. It doesn't describe return values or lifecycle configuration, but the schema already documents most parameters, and this is a straightforward create operation.

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?

Schema description coverage is 75%, so the schema carries most parameter documentation. The description reinforces required name/url and summarizes the purpose of extra_fields, but this largely echoes existing schema descriptions for those fields. It adds little new meaning beyond what the schema already provides.

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 states a specific verb ('Create'), a specific resource ('Custom HTTP Delivery integration'), and the type discriminator ('type=http'). It also names the required fields, which anchors exactly what the tool does. This clearly distinguishes it from siblings like update_http_integration, get_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 Guidelines4/5

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

The description gives clear actionable context: this creates a new integration, name and url are required, and extra_fields is the channel for OAuth and lifecycle extras. It also notes the write-permission prerequisite. It doesn't explicitly contrast with update_http_integration or state when not to use it, but the create/update split is clear from the name and the guidance is sufficient.

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