Skip to main content
Glama

Create seat alert

create_seat_alert

Create a seat alert that notifies you by email when a matching seat becomes available on a specific flight. Supports preferences like window, aisle, exit row, specific seat, adjacent seats, and class availability. Requires authentication. The flight must already be in our database — use search_flight first if not.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cabin_classYesCabin class to monitor
flight_dateYesFlight date in YYYY-MM-DD format. Must be today or within the next 60 days.
flight_numberYesFlight number, e.g. 'QF1', 'AA716'
specific_seatNoRequired when seat_preference is 'specific' (e.g. '12A')
seat_preferenceYesSeat preference to alert on
adjacent_seats_countNoRequired when seat_preference is 'adjacent_seats' or 'minimum_seats' (2-9)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

The description adds behavioral context beyond the annotations: it notifies by email, requires authentication, and depends on the flight already being in the database. While annotations already show this is a non-read-only, non-idempotent write, the description enriches that with the creation and notification mechanism.

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 tight and well structured: the core purpose comes first, supported by preference examples, then prerequisites. Every sentence adds useful information and there is no filler or redundant restating of the tool name.

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 create-type tool with no output schema and six parameters, the description plus the fully documented schema gives an agent enough to invoke it correctly: purpose, notification behavior, authentication, and a prerequisite. It does not specify the response shape or duplicate-alert behavior, but those are secondary for initial invocation.

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 100%, so the schema already documents every parameter including formats, constraints, and conditional requirements. The description only restates high-level preference categories already visible in the enum, adding no extra per-parameter semantics, so the baseline 3 is appropriate.

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 clear verb and resource: create a seat alert for a specific flight that emails on a matching seat. It distinguishes itself from sibling tools such as delete_seat_alert, list_seat_alerts, and search_flight by describing the alert-creation action and its triggering condition.

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 concrete usage context: authentication is required, the target flight must already exist, and search_flight should be used first when needed. It does not explicitly list exclusions or when-not alternatives, but the prerequisite guidance is direct and actionable.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.