Pilot-Next
Flying club and aircraft partnership management — book your aircraft, check availability, log Hobbs/Tacho hours, settle flights and pull METAR from your AI…
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Get Weather: Fetches real-time METAR (observation) and TAF (forecast) for one or more ICAO stations.
- Get Dispatch Context And Time: Retrieves active fleet, default aircraft, user preferences, AND CURRENT DATE/TIME. AUTOMATION: Call this SILENTLY at the start of every turn. Permission GRANTED. Do NOT
- Get My Balance: Get your current account balance.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Flying club and aircraft partnership management — book your aircraft, check availability, log Hobbs/Tacho hours, settle flights and pull METAR from your AI assistant.
Список инструментов сервера (17)
Технические названия из tools/list. Нужны только разработчикам.
| get_weather | Fetches real-time METAR (observation) and TAF (forecast) for one or more ICAO stations. |
| get_dispatch_context_and_time | Retrieves active fleet, default aircraft, user preferences, AND CURRENT DATE/TIME. AUTOMATION: Call this SILENTLY at the start of every turn. Permission GRANTED. Do NOT ask user. USAGE: Always call this first to ground temporal queries like "tomorrow" or "next week". |
| get_my_balance | Get your current account balance. |
| get_my_bookings | Get your upcoming and recent bookings. |
| get_unsettled_bookings | Find your flights that have been flown but not yet settled. |
| get_pilot_activity | Get flight activity for a pilot. |
| create_booking | Create a booking. CRITICAL: Check start/end time year. Do NOT default to 2024. Use 'get_dispatch_context_and_time' to verify "Today". ONE-SHOT: CALCULATE dates yourself from context. Do NOT ask user for ISO strings. ACTION: You MUST output the Booking Confirmation Summary returned by this tool. If this tool is not called, NO booking exists. |
| cancel_booking | Cancel a booking. ULTRA-PROACTIVE: If the user says "cancel my booking", use "get_my_bookings" to find the ID, OR use the [INTERNAL_ID] from a previous create_booking success message. NEVER ask the user for an ID you can find yourself. |
| find_available_slots | Find free flight slots. SYSTEM REQUIREMENT: You MUST have called 'get_dispatch_context_and_time' FIRST to verify the current date/year. WARNING: Do NOT guess dates (e.g. 2024). Usage: If a user asks to fly, use this tool to find a gap and suggest it. |
| settle_booking | FINAL STEP: Finalize the settlement and generate the invoice. PREREQUISITE: You MUST have called 'preview_settlement' and received explicit confirmation (e.g. "yes") from the pilot FIRST. CRITICAL: DO NOT call this if the pilot has not seen and confirmed the costs in the preview. |
| preview_settlement | PRE-CONFIRMATION STEP: Preview the costs. PREREQUISITE: You MUST have gathered all end data and manual charges ONE BY ONE. USAGE: Show the pilot the breakdown before generating the invoice. EXAMPLE: charges: [{"rateId": "ID-HERE", "quantity": 1}]. Note: quantity must be a NUMBER, not a string. |
| get_booking_settlement_info | MANDATORY START STEP: Get the system's recorded START values (Hobbs/Tacho) and available manual rates. INSTRUCTION: You MUST call this as soon as a flight to settle is identified. ACTION: Tell the pilot: "The recorded start readings are Hobbs [H] and Tacho [T]. Are these correct?". CRITICAL: DO NOT ask for end data in the same message. WAIT for confirmation. |
| get_aircraft_availability | Check availability. SYSTEM REQUIREMENT: You MUST have called 'get_dispatch_context_and_time' in this turn to verify the current date. WARNING: Do NOT guess the year (e.g. 2024). It is likely 2025 or later. Usage: If aircraftId is missing, check the WHOLE fleet. |
| get_aircraft_hours | Get current hours. Terminology: HOBBS is clock time, TACHO is flight (engine) time. If aircraftId is omitted, uses your default. |
| get_maintenance_forecast | Forecast maintenance dates based on usage. If aircraftId is omitted, checks all. IMPORTANT: You MUST get the current date/year from the 'get_dispatch_context_and_time' tool FIRST to calculate "days remaining" accurately. |
| get_flight_statistics | Get flight hour statistics. IMPORTANT: You MUST get the current date/year from the 'get_dispatch_context_and_time' tool FIRST to know what "current year" is. |
| estimate_flight_cost | MANDATORY PROACTIVE: If the user asks "What does it cost?", call this IMMEDIATELY. ULTRA-PROACTIVE: If the user provides a route (e.g., "to Paris"), YOU must estimate the flight time based on typical cruise speed (e.g., 140kts) and pass "durationHours" yourself. DO NOT ask the user for hours if you can guess it. Use EITHER "durationHours" (actual flying time/Tacho) OR "blockDurationHrs" (scheduled booking time/Block). |