UNPKG

crew-management-mcp-server

Version:

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

29 lines (28 loc) 1.27 kB
#!/usr/bin/env node console.log('🚢 Crew Management MCP Server'); console.log('============================='); console.log(''); console.log('A Model Context Protocol server for crew management operations.'); console.log(''); console.log('Features:'); console.log('• Smart crew search across vessels'); console.log('• Certification tracking and compliance'); console.log('• Contract and schedule management'); console.log('• Payroll and workforce planning'); console.log(''); console.log('Usage:'); console.log(' crew-management-mcp-server [options]'); console.log(''); console.log('Options:'); console.log(' --mongo-uri <uri> MongoDB connection string'); console.log(' --db-name <name> Database name'); console.log(' --typesense-host <host> Typesense host'); console.log(' --typesense-port <port> Typesense port'); console.log(' --typesense-api-key <key> Typesense API key'); console.log(' --openai-api-key <key> OpenAI API key'); console.log(''); console.log('Environment Variables:'); console.log(' MONGO_URI, DB_NAME, TYPESENSE_HOST, TYPESENSE_PORT,'); console.log(' TYPESENSE_API_KEY, OPENAI_API_KEY'); console.log(''); console.log('For more information, visit: https://github.com/your-org/crew-management-mcp-server');