LumbreTravel MCP Server

# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - clientId - clientSecret - email - password properties: clientId: type: string description: The client ID for the LumbreTravel server. clientSecret: type: string description: The client secret for the LumbreTravel server. email: type: string description: Email for the LumbreTravel API access. password: type: string description: Password for the LumbreTravel API access. commandFunction: # A function that produces the CLI command to start the MCP on stdio. |- config => ({ command: 'node', args: ['build/index.js'], env: { CLIENT_ID: config.clientId, CLIENT_SECRET: config.clientSecret, EMAIL: config.email, PASSWORD: config.password } })