Jake Shore 4f2a8d6ab5 GHL MCP full update — 2026-02-06
=== DONE ===
- MCP Apps UI system added (11 apps with _meta.ui.resourceUri)
- 19 new tool modules added
- Tool count: 269 → 461 across 38 categories
- Upstream changes merged
- All tools tagged with _meta labels
- Package lock updated

=== TO-DO ===
- [ ] Fix 42 failing edge case tests (BLOCKER — Stage 11)
- [ ] Live API testing with GHL credentials
- [ ] App design approval for Stage 7→8
2026-02-06 06:27:05 -05:00

59 lines
1.4 KiB
JSON

{
"name": "@mastanley13/ghl-mcp-server",
"version": "1.0.0",
"description": "GoHighLevel MCP Server for Claude Desktop and ChatGPT integration",
"main": "dist/server.js",
"bin": {
"ghl-mcp-server": "dist/server.js"
},
"files": [
"dist/",
"README.md",
"package.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build:dynamic-ui": "cd src/ui/react-app && npm run build",
"build": "npm run build:dynamic-ui && tsc",
"dev": "nodemon --exec ts-node src/http-server.ts",
"start": "node dist/http-server.js",
"start:stdio": "node dist/server.js",
"start:http": "node dist/http-server.js",
"vercel-build": "npm run build",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "tsc --noEmit"
},
"keywords": [
"mcp",
"gohighlevel",
"chatgpt",
"api"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"axios": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0"
}
}