- 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
14 lines
259 B
JavaScript
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);
|
|
});
|