UNPKG

msexchange-mcp

Version:

MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API

11 lines 378 B
#!/usr/bin/env node import { start } from './server.js'; // Parse command line arguments const args = process.argv.slice(2); const transport = args.includes('--transport') ? args[args.indexOf('--transport') + 1] : 'stdio'; // Start the server console.error(`Starting Exchange MCP server with ${transport} transport...`); start(transport); //# sourceMappingURL=cli.js.map