UNPKG

ghl-mcp-server

Version:

GoHighLevel MCP Server for Claude Desktop and ChatGPT integration

69 lines (68 loc) 1.62 kB
{ "name": "ghl-mcp-server", "version": "1.0.3", "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", "claude", "api", "crm", "model-context-protocol", "ghl" ], "author": "mastanley13", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/mastanley13/ghl-mcp.git" }, "homepage": "https://github.com/mastanley13/ghl-mcp#readme", "bugs": { "url": "https://github.com/mastanley13/ghl-mcp/issues" }, "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" } }