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
9 lines (8 loc) • 516 B
TypeScript
import { ToolResponse, GetVesselMeccHistoryArguments, MecloHistoricalDataArguments, GetVesselAeccHistoryArguments } from "../../types/index.js";
export declare class LubricantOilToolHandler {
private databaseManager;
constructor();
handleGetVesselMeccHistory(args: GetVesselMeccHistoryArguments): Promise<ToolResponse>;
handleMecloHistoricalData(args: MecloHistoricalDataArguments): Promise<ToolResponse>;
handleGetVesselAeccHistory(args: GetVesselAeccHistoryArguments): Promise<ToolResponse>;
}