Jake Shore a78d044005 housecall-pro: Complete MCP server with 112 tools and 15 React apps
- 112 MCP tools across 17 domains (jobs, customers, estimates, invoices, payments, employees, scheduling, dispatch, tags, notifications, reviews, reporting, price book, leads, webhooks, time tracking, settings)
- 15 React apps with proper Vite build setup and dark theme
- Full API client with Bearer auth, pagination, error handling, rate limiting
- Complete TypeScript types for all entities
- TSC passes clean
- GHL-quality standard achieved
2026-02-12 17:48:10 -05:00

14 lines
259 B
JavaScript

#!/usr/bin/env node
/**
* Jobber MCP Server Entry Point
*/
import { JobberServer } from './server.js';
const server = new JobberServer();
server.run().catch((error) => {
console.error('Fatal error in Jobber MCP server:', error);
process.exit(1);
});