GoHighLevel MCP Server

GoHighLevel MCP Server

Enables AI assistants to manage GoHighLevel CRM data including contacts, conversations, opportunities, calendars, and forms through MCP tools and resources.

Category
访问服务器

README

Automated Tests

GoHighLevel MCP Server

A Model Context Protocol (MCP) server that provides seamless integration with the GoHighLevel API v2. This server enables AI assistants to interact with GoHighLevel's CRM functionality, starting with comprehensive contact management.

Features

  • 🔐 OAuth 2.0 Authentication: Full OAuth flow with automatic token management by default
  • 🏢 Multi-location Support: Works with agency accounts to manage multiple sub-accounts
  • 👥 Contact Management: Complete CRUD operations for contacts
  • 💬 Conversations: Search conversations, view messages, and manage messaging
  • 📝 Forms & Submissions: List forms, view submissions, test form submissions like a website visitor
  • 🏷️ Tag Management: Add and remove tags from contacts
  • 🔄 Automatic Token Refresh: Handles token expiration seamlessly
  • 🛠️ MCP Tools & Resources: Both tools and resources for flexible integration

Prerequisites

  • Python 3.12+
  • uv package manager (or pip)
  • One of the following:
    • Standard Mode Configuration: Access via our hosted GoHighLevel app (coming soon)
    • Custom Mode Configuration: Your own GoHighLevel Marketplace App credentials

Getting Started - Installation

  1. Clone the repository:
git clone https://github.com/basicmachines-co/open-ghl-mcp.git
cd open-ghl-mcp
  1. Install dependencies:
uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
  1. Start the server:
python -m src.main

1. Configuration

Use your own GoHighLevel Marketplace App:

  1. Create your own GoHighLevel Marketplace App
  2. Set the redirect URL to: http://localhost:8080/oauth/callback
  3. Set the permissions you want for the tools and resources below

2. Usage

Running the MCP Server

  1. Start the server:
python -m src.main
  1. Complete the setup wizard.

  2. Configure your LLM to use the MCP server

First-time Authentication

Custom Mode Setup

  1. The server will ask you for your GHL Marketplace App Client ID and Secret
  2. Install your App to generate an OAuth Token

API Reference

This MCP server provides comprehensive access to GoHighLevel API v2 through both Tools (for actions) and Resources (for data browsing). All endpoints are fully tested and validated.

🛠️ MCP Tools (Actions)

👥 Contact Management

Tool GoHighLevel Endpoint Description
create_contact POST /contacts Create a new contact
update_contact PUT /contacts/{id} Update existing contact
delete_contact DELETE /contacts/{id} Delete a contact
get_contact GET /contacts/{id} Get a single contact
search_contacts GET /contacts Search contacts with filters
add_contact_tags POST /contacts/{id}/tags Add tags to a contact
remove_contact_tags DELETE /contacts/{id}/tags Remove tags from a contact

💬 Conversations & Messaging

Tool GoHighLevel Endpoint Description
get_conversations GET /conversations/search Search and list conversations
get_conversation GET /conversations/{id} Get a single conversation
get_messages GET /conversations/{id}/messages Get messages from a conversation
send_message POST /conversations/{id}/messages Send messages (SMS ✅, Email ✅, WhatsApp, IG, FB, Custom, Live_Chat)
update_message_status PUT /conversations/messages/{messageId}/status Update message delivery status

🎯 Opportunities & Sales Pipeline

Tool GoHighLevel Endpoint Description
get_opportunities GET /opportunities/search Search opportunities with filters
get_opportunity GET /opportunities/{id} Get a single opportunity
create_opportunity POST /opportunities Create new opportunity
update_opportunity PUT /opportunities/{id} Update existing opportunity
delete_opportunity DELETE /opportunities/{id} Delete opportunity
update_opportunity_status PUT /opportunities/{id}/status Update opportunity status
get_pipelines GET /opportunities/pipelines List all pipelines

📅 Calendar & Appointments

Tool GoHighLevel Endpoint Description
get_calendars GET /calendars/?locationId={id} List all calendars for location
get_calendar GET /calendars/{id} Get calendar details (54+ fields)
get_appointments GET /contacts/{contactId}/appointments Get appointments for contact
get_free_slots GET /calendars/{id}/free-slots Get available time slots

📝 Forms & Submissions

Tool GoHighLevel Endpoint Description
get_forms GET /forms List all forms (basic info: id, name, locationId)
get_all_form_submissions GET /forms/submissions Get all submissions with filtering
upload_form_file POST /forms/upload-custom-files Upload file to custom field

Note: Limited API support for forms. The following are NOT available:

  • GET /forms/{id} (401 "Route not supported")
  • GET /forms/{id}/submissions (404 Not Found)
  • POST /forms/submit (401 Unauthorized)

📖 MCP Resources (Data Browsing)

👥 Contact Resources

Resource URI GoHighLevel Endpoint Description
contacts://{location_id} GET /contacts Browse all contacts for location
contact://{location_id}/{contact_id} GET /contacts/{id} View single contact details

💬 Conversation Resources

Resource URI GoHighLevel Endpoint Description
conversations://{location_id} GET /conversations/search Browse all conversations for location
conversation://{location_id}/{conversation_id} GET /conversations/{id} View conversation with messages

🎯 Opportunity Resources

Resource URI GoHighLevel Endpoint Description
opportunities://{location_id} GET /opportunities/search Browse all opportunities for location
opportunity://{location_id}/{opportunity_id} GET /opportunities/{id} View single opportunity details
pipelines://{location_id} GET /opportunities/pipelines Browse all pipelines with stages

📅 Calendar Resources

Resource URI GoHighLevel Endpoint Description
calendars://{location_id} GET /calendars/ Browse all calendars for location
calendar://{location_id}/{calendar_id} GET /calendars/{id} View calendar details
appointments://{location_id}/{contact_id} GET /contacts/{id}/appointments Browse appointments for contact

🔐 Authentication Requirements

All endpoints require proper authentication:

  • Company Token: Used for location token exchange
  • Location Token: Required for all location-specific operations (expires every 24 hours)
  • Automatic Refresh: The MCP server handles token refresh automatically

📋 Example Usage

# Get all contacts for your location
contacts://YOUR_LOCATION_ID

# Get specific contact details
contact://YOUR_LOCATION_ID/YOUR_CONTACT_ID

# Browse appointments for a contact
appointments://YOUR_LOCATION_ID/YOUR_CONTACT_ID

# Browse opportunities for your location
opportunities://YOUR_LOCATION_ID

# View conversation details
conversation://YOUR_LOCATION_ID/YOUR_CONVERSATION_ID

Development

Testing

For local testing with real GoHighLevel accounts, you'll need:

  • A GoHighLevel account with API access
  • At least one sub-account (location) for testing
  • Test contacts and data in your GoHighLevel instance

Create your own testing guidelines and keep sensitive data like location IDs and contact IDs in local files that are not committed to the repository.

Running Tests

# Run all tests
uv run pytest

# Run tests with coverage report
uv run pytest --cov=src --cov-report=term-missing

# Run specific test file
uv run pytest tests/test_api_client.py -v

Code Quality

This project uses automated code quality tools. Before committing changes:

# Format code with Black
uv run black src/ tests/

# Check linting with flake8
uv run flake8 src/ tests/

# Run type checking with mypy
uv run mypy src/ --ignore-missing-imports

# Run all checks at once
uv run black src/ tests/ && uv run flake8 src/ tests/ && uv run mypy src/ --ignore-missing-imports

Pre-commit Hook (optional)

To automatically format code before commits:

# Create a git pre-commit hook
echo '#!/bin/sh
uv run black src/ tests/
uv run flake8 src/ tests/
' > .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit

Continuous Integration

The project uses GitHub Actions for CI/CD:

  • Tests run automatically on all pushes and pull requests
  • Tested with Python 3.12 and 3.13
  • Includes linting, type checking, and test coverage
  • Coverage reports are uploaded to Codecov (if configured)

Architecture

The server follows a modular architecture:

  • OAuth Service: Handles authentication and token management
  • API Client: Manages communication with GoHighLevel API
  • MCP Server: FastMCP-based server exposing tools and resources
  • Data Models: Pydantic models for data validation

License

This project is licensed under the GNU Affero General Public License v3.0 - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

For issues and feature requests, please use the GitHub issues tracker.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选