Skip to main content
Glama
WYRE-AI

AlertOps MCP Server

by WYRE-AI

alertops_get_alert_id_by_unique_inbound_id

Resolve the AlertID mapped to an inbound integration's uniqueInboundID, translating the integration's returned identifier into an AlertOps alert ID.

Instructions

Resolve the AlertID that a given inbound integration's uniqueInboundID was mapped or appended to. The uniqueInboundID is the value an inbound integration call returns, not the AlertID itself.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
unique_inbound_idYesThe uniqueInboundID returned by an inbound integration call.

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 disclosing behavior. It clarifies the ID semantics but does not state whether the operation is read-only, what happens for unmapped IDs, whether any side effects occur, or what the response contains.

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 short sentences with no filler. The main action is stated first, and the crucial clarification about the input occupies the second sentence.

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

Completeness3/5

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

For a simple one-parameter resolver, the core purpose and input semantics are covered. However, with no output schema or annotations, the description does not explain the return value shape, missing-ID behavior, or how this tool differs from the close sibling get_alert_id_by_inbound_message_id, leaving some important context unstated.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents the parameter with 100% coverage, so the baseline is 3. The description adds value by emphasizing that uniqueInboundID is not the AlertID itself, helping prevent a likely semantic error when calling the tool.

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 clearly states the operation: resolve an AlertID from a uniqueInboundID, and explicitly distinguishes the input value from the AlertID itself. It does not explicitly contrast this tool with the similarly named sibling alertops_get_alert_id_by_inbound_message_id, so it stops short of full differentiation.

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 implies when to use the tool: when an inbound integration call returns a uniqueInboundID and the agent needs the corresponding AlertID. However, it gives no explicit guidance about when not to use it or how it relates to alternatives like alertops_get_alert_id_by_inbound_message_id.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.