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

24 lines (23 loc) 824 B
import { Tool } from "@modelcontextprotocol/sdk/types.js"; export interface ListToolsRequestSchema { type: "object"; properties: { category?: { type: "string"; description: "Optional category to filter tools by"; enum: ["voyage", "consumption", "performance", "vessel", "user"]; }; search?: { type: "string"; description: "Optional search term to filter tools by name or description"; }; include_deprecated?: { type: "boolean"; description: "Whether to include deprecated tools in the response"; default: false; }; }; additionalProperties: false; } export declare const listToolsRequestSchema: ListToolsRequestSchema; export declare const toolDefinitions: Tool[];