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
13 lines (12 loc) • 378 B
TypeScript
import { ToolResponse } from "../../types/index.js";
export declare class VesselPositionToolHandler {
constructor();
handleGetLiveWeatherByCoordinates(args: {
latitude: number;
longitude: number;
timestamp: string;
}): Promise<ToolResponse>;
handleGetVesselLivePositionAndEta(args: {
imo: string;
}): Promise<ToolResponse>;
}