- 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
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@mcpengine/servicetitan",
|
|
"version": "1.0.0",
|
|
"description": "ServiceTitan MCP Server - Complete field service management integration with 108+ tools and 15+ React apps",
|
|
"main": "dist/main.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"servicetitan-mcp": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && npm run build:apps && chmod +x dist/main.js",
|
|
"build:apps": "cd src/ui/react-app && npm run build",
|
|
"dev": "tsx src/main.ts",
|
|
"watch": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"prepare": "npm run build",
|
|
"test": "echo \"Tests coming soon\""
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"servicetitan",
|
|
"field-service",
|
|
"dispatch",
|
|
"crm",
|
|
"hvac",
|
|
"plumbing",
|
|
"electrical"
|
|
],
|
|
"author": "MCP Engine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.9",
|
|
"dotenv": "^16.4.7",
|
|
"zod": "^3.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|