Skip to main content
Glama

Pre-flight briefing

preflight_briefing
Read-only

Check if a UK drone takeoff is legal: receive a GO, CAUTION, or NO-GO verdict with reasons from airspace, live NOTAMs, weather, and landowner rules.

Instructions

One pre-flight briefing for a UK take-off point and time: a GO, CAUTION or NO-GO status with reasons, from the airspace verdict, live NOTAMs, the weather window, geomagnetic activity, rights of way, parking and, when a drone is named, its open category rules. A live source that cannot be read is reported as an outage, never assumed clear. Give a place or lat/lon; date and hours set the flying window (default now, 3 hours). Set frz_permission when an aerodrome has already agreed the flight.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latNoLatitude in decimal degrees (WGS84).
lonNoLongitude in decimal degrees (WGS84), negative west of Greenwich.
dateNoISO 8601 date or date-time (UTC assumed when no offset). Defaults to now.
droneNoDrone make and model, e.g. "DJI Mini 4 Pro", "Air 3S", "Mavic 3 Classic". Looked up in a curated catalogue of consumer drones.
hoursNoLength of the flying window from the start time.
placeNoPlace name, postcode or landmark in the UK, e.g. "Tyndale Monument", "BS1 6QF", "Durdle Door". Use lat/lon instead if you already have coordinates.
formatNotext for a readable report (default), json for structured output, brief for two or three spoken-friendly sentences (use in voice conversations).text
max_pathsNoRights of way to list.
a2_certificateNoWhether the pilot holds an A2 Certificate of Competency (A2 CofC).
frz_permissionNoThe aerodrome has given permission to fly in its FRZ; the FRZ then counts as caution rather than no-go.
notam_radius_kmNoAlso list NOTAMs within this distance.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds valuable behavior beyond that: unreadable live sources are reported as outages rather than assumed clear, and drone rules are only included when a drone is named. This is exactly the kind of non-obvious behavior an agent needs to know.

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 with no filler. The first sentence front-loads the status output and the list of inputs, and the second adds the outage policy and key invocation guidance. Every clause earns its place.

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 an 11-parameter aggregate tool with no output schema, the description covers purpose, input selection, default behavior, and the shape of the result (GO/CAUTION/NO-GO with reasons). It does not spell out the full output structure, but the format parameter in the schema covers the text/json/brief variants, so the description is reasonably complete.

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?

Schema coverage is 100%, so the baseline is 3. The description adds extra meaning: it explains the place-or-lat/lon choice, the default 3-hour window, and the condition for frz_permission. This goes beyond the schema's field-level descriptions and helps an agent select the right combination of parameters.

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 deliverable: a one-shot pre-flight briefing with a GO, CAUTION or NO-GO status and reasons. It enumerates the data sources (airspace, NOTAMs, weather, geomagnetic, rights of way, parking, drone rules), which clearly distinguishes it from the single-purpose sibling tools like check_weather or check_notams.

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 invocation context: provide a UK place or lat/lon, set the date and hours for the flying window, and optionally set frz_permission when an aerodrome has agreed. It does not explicitly say 'use this instead of individual check tools', but the aggregate nature of the briefing makes that implicit, and no misleading exclusions are present.

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