Jake Shore ec4a7475d9 helpscout: Complete MCP server with 47 tools and 18 apps
- Comprehensive HelpScout Mailbox API v2 integration
- 47 tools across 10 categories: conversations, customers, mailboxes, users, tags, workflows, saved-replies, teams, webhooks, reporting
- 18 interactive MCP apps: dashboards, detail views, reports, managers
- OAuth2 authentication with automatic token refresh
- Full pagination support and error handling
- Complete TypeScript types for all API entities
2026-02-12 18:14:34 -05:00

12 lines
261 B
JavaScript

#!/usr/bin/env node
import { runServer } from './server.js';
import dotenv from 'dotenv';
// Load environment variables from .env file if it exists
dotenv.config();
runServer().catch((error) => {
console.error('Fatal error:', error);
process.exit(1);
});