UNPKG

crew-management-mcp-server

Version:

Crew management server handling crew records, certifications, scheduling, payroll, and vessel assignments with ERP access for data extraction

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: ["crew", "certification", "schedule", "payroll", "vessel"]; }; 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[];