UNPKG

voyage-and-consumption-mcp-server

Version:

Voyage and consumption management server handling vessel position tracking, ETA monitoring, fuel consumption, lube oil consumption, fresh water production and weather data

42 lines 1.67 kB
// // get_vessel_fuel_consumption_rob // // get_vessel_fuel_consumption_history // // get_mecc_aecc_consumption_and_rob export {}; // import { // ToolResponse // } from "../../types/index.js"; // import { fetchQADetailsAndCreateResponse } from "syia-mcp-utils"; // export class FuelConsumptionToolHandler { // constructor() {} // async getVesselFuelConsumptionRob(args: { imo: string; session_id?: string }): Promise<ToolResponse> { // const { imo, session_id = "testing" } = args; // return fetchQADetailsAndCreateResponse( // imo, // 34, // "get_vessel_fuel_consumption_rob", // "vessel fuel consumption and ROB", // session_id // ); // } // async getVesselFuelConsumptionHistory(args: { imo: string; start_date?: string; end_date?: string; session_id?: string }): Promise<ToolResponse> { // const { imo, session_id = "testing" } = args; // return fetchQADetailsAndCreateResponse( // imo, // 35, // "get_vessel_fuel_consumption_history", // "vessel fuel consumption history", // session_id // ); // } // async getMeccAeccConsumptionAndRob(args: { imo: string; session_id?: string }): Promise<ToolResponse> { // const { imo, session_id = "testing" } = args; // return fetchQADetailsAndCreateResponse( // imo, // 36, // "get_mecc_aecc_consumption_and_rob", // "MECC/AECC consumption and ROB", // session_id // ); // } // } //# sourceMappingURL=fuelConsumptionTools.js.map