Jake Shore 87944facc0 Rebrand MCPEngine → MCPEngage + deep customization for Housecall Pro home service
- Fix all MCPEngine → MCPEngage, mcpengine → mcpengage
- Add 5 home service Power Moves (scheduling, estimate pipeline, revenue tracking)
- Document 8 tools with accurate descriptions from source
- Add real API URLs (api.housecallpro.com/v1) and auth details
- Platform-specific prompts for plumbing, HVAC, electrical, landscaping
- Update package.json author
2026-02-02 07:02:02 -05:00

46 lines
1.1 KiB
JSON

{
"name": "housecall-pro-mcp-server",
"version": "1.0.0",
"description": "MCP server for Housecall Pro API - 2026 Complete Version",
"type": "module",
"main": "dist/index.js",
"author": "MCPEngage <hello@mcpengage.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BusyBee3333/Housecall-Pro-MCP-2026-Complete.git"
},
"keywords": [
"mcp",
"housecallpro",
"housecall pro",
"api",
"ai"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}