🚀 Features:
- 269 MCP tools across 19+ categories
- Complete GoHighLevel API integration
- Private Integrations API key support
- One-click deployment to Vercel/Railway
- Comprehensive documentation
- Community-driven development
Built for the GoHighLevel community to accelerate AI automation adoption.
57 lines
1.3 KiB
JSON
57 lines
1.3 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": "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": {
|
|
"@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"
|
|
}
|
|
}
|