-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.py
More file actions
1376 lines (1314 loc) · 49.5 KB
/
Copy pathserver.py
File metadata and controls
1376 lines (1314 loc) · 49.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
"""
GoHighLevel Internal CLI / MCP Server
Provides access to the internal GHL v2 API for:
• Agent Studio (AI agents)
• Conversation AI (AskAI / AI Employees)
• Voice AI
• Knowledge Base
• Vibe AI
• Funnels
• Feature Flags
• Facebook Integration
• Chat Widget
• WhatsApp Phone Numbers
• Forms
• Custom Values
• Payments Currency
• Social Media Accounts
• Templates
• Pipelines
• Opportunities
Run as an MCP stdio server (default) or as a simple CLI if you prefer.
"""
import os
import json
import sys
from typing import Any, Dict, List, Optional
import httpx
from mcp.server import Server, NotificationOptions
from mcp.server.stdio import stdio_server
from mcp.types import Tool
# -----------------------------------------------------------------------------
# Configuration (read from env)
# -----------------------------------------------------------------------------
GHL_API_KEY = os.environ.get('GHL_API_KEY', '')
GHL_LOCATION_ID = os.environ.get('GHL_LOCATION_ID', '')
if not GHL_API_KEY:
print('[ghl-internal-cli] ERROR: GHL_API_KEY environment variable required')
sys.exit(1)
# Strip the optional 'pit-' prefix that GHL expects in the Bearer token
BEARER_TOKEN = GHL_API_KEY.replace('pit-', '', 1) if GHL_API_KEY.lower().startswith('pit-') else GHL_API_KEY
GHL_BASE_URL = 'https://services.leadconnectorhq.com'
VERSION_HEADER = '2021-07-28'
# -----------------------------------------------------------------------------
# Low-level HTTP helper
# -----------------------------------------------------------------------------
async def ghl_request(
method: str,
path: str,
params: Optional[Dict[str, Any]] = None,
json_data: Optional[Any] = None,
) -> Dict[str, Any]:
headers = {
'Authorization': f'Bearer {BEARER_TOKEN}',
'Content-Type': 'application/json',
'Accept': 'application/json',
'Version': VERSION_HEADER,
}
async with httpx.AsyncClient(timeout=30.0) as client:
url = f'{GHL_BASE_URL}{path}'
response = await client.request(
method,
url,
params=params or {},
json=json_data,
headers=headers,
)
if response.status_code >= 400:
raise Exception(
f'HTTP {response.status_code}: {response.text}'
)
return response.json()
# -----------------------------------------------------------------------------
# MCP Server
# -----------------------------------------------------------------------------
server = Server('ghl-internal-cli')
TOOLS: List[Tool] = [
# ----- Agent Studio -----
Tool(
name='ghl_agent_studio_create_agent',
description='Create a new AI agent in Agent Studio',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'agentName': {'type': 'string', 'description': 'Agent name'},
'agentPrompt': {'type': 'string', 'description': 'System prompt'},
'welcomeMessage': {'type': 'string', 'description': 'Welcome message'},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_agent_studio_get_agents',
description='List all AI agents in Agent Studio',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'limit': {'type': 'string', 'default': '100'},
'offset': {'type': 'string', 'default': '0'},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_agent_studio_get_agent',
description='Get a specific AI agent by ID',
inputSchema={
'type': 'object',
'properties': {
'agentId': {'type': 'string', 'description': 'Agent ID to retrieve'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['agentId', 'locationId'],
},
),
Tool(
name='ghl_agent_studio_execute_agent',
description='Execute an AI agent and get a response',
inputSchema={
'type': 'object',
'properties': {
'agentId': {'type': 'string', 'description': 'Agent ID to execute'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'message': {'type': 'string', 'description': 'Message to send'},
'executionId': {
'type': 'string',
'description': 'Session ID (optional)',
},
},
'required': ['agentId', 'locationId', 'message'],
},
),
# ----- Conversation AI (AskAI / AI Employees) -----
Tool(
name='ghl_conversation_ai_create_agent',
description='Create a Conversation AI agent (AskAI / AI Employee)',
inputSchema={
'type': 'object',
'properties': {
'agentName': {type: 'string', 'description': 'Agent name'},
'agentRole': {type: 'string', 'description': 'Agent role/purpose'},
},
},
),
Tool(
name='ghl_conversation_ai_search_agents',
description='Search Conversation AI agents',
inputSchema={
'type': 'object',
'properties': {
'query': {type: 'string', 'description': 'Search query'},
'limit': {'type': 'number', 'default': 100},
},
},
),
Tool(
name='ghl_conversation_ai_get_agent',
description='Get a Conversation AI agent by ID',
inputSchema={
'type': 'object',
'properties': {
'agentId': {'type': 'string', 'description': 'Agent ID'},
},
'required': ['agentId'],
},
),
Tool(
name='ghl_conversation_ai_update_agent',
description='Update a Conversation AI agent',
inputSchema={
'type': 'object',
'properties': {
'agentId': {'type': 'string', 'description': 'Agent ID'},
'agentName': {
'type': 'string',
'description': 'New agent name (optional)',
},
'agentStatus': {
'type': 'string',
"description": "New status (e.g., 'active', 'paused')",
},
},
'required': ['agentId'],
},
),
Tool(
name='ghl_conversation_ai_delete_agent',
description='Delete a Conversation AI agent',
inputSchema={
'type': 'object',
'properties': {
'agentId': {'type': 'string', 'description': 'Agent ID'},
},
'required': ['agentId'],
},
),
# ----- Voice AI -----
Tool(
name='ghl_voice_ai_create_agent',
description='Create a Voice AI agent',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'agentName': {type: 'string', 'description': 'Agent name'},
'agentPrompt': {type: 'string', 'description': 'Agent prompt'},
'welcomeMessage': {type: 'string', 'description': 'Welcome message'},
'voiceId': {type: 'string', 'description': 'Voice ID'},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_voice_ai_get_agents',
description='List Voice AI agents',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'page': {type: 'number', 'default': 1},
'pageSize': {type: 'number', 'default': 20},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_voice_ai_get_agent',
description='Get a Voice AI agent by ID',
inputSchema={
'type': 'object',
'properties': {
'agentId': {type: 'string', 'description': 'Agent ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['agentId', 'locationId'],
},
),
Tool(
name='ghl_voice_ai_delete_agent',
description='Delete a Voice AI agent',
inputSchema={
'type': 'object',
'properties': {
'agentId': {type: 'string', 'description': 'Agent ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['agentId', 'locationId'],
},
),
Tool(
name='ghl_voice_ai_get_call_logs',
description='Get Voice AI call logs',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'agentId': {type: 'string', 'description': 'Agent ID'},
'page': {type: 'number', 'default': 1},
'pageSize': {type: 'number', 'default': 20},
},
'required': ['locationId', 'agentId'],
},
),
# ----- Knowledge Base -----
Tool(
name='ghl_knowledge_base_list',
description='List all knowledge bases for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_knowledge_base_create',
description='Create a knowledge base for AI training',
inputSchema={
'type': 'object',
'properties': {
'name': {'type': 'string', 'description': 'Knowledge base name'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['name', 'locationId'],
},
),
Tool(
name='ghl_knowledge_base_discover_website',
description='Discover website pages for knowledge base training',
inputSchema={
'type': 'object',
'properties': {
'knowledgeBaseId': {
'type': 'string',
'description': 'Knowledge base ID',
},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'url': {'type': 'string', 'description': 'URL to scan'},
},
'required': ['knowledgeBaseId', 'locationId', 'url'],
},
),
Tool(
name='ghl_knowledge_base_train_urls',
description=(
'Train discovered URLs into a knowledge base (accepts an array of URLs)'
),
inputSchema={
'type': 'object',
'properties': {
'knowledgeBaseId': {
'type': 'string',
'description': 'Knowledge base ID',
},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'urls': {
'type': 'array',
'items': {'type': 'string'},
'description': 'List of URLs to train on',
},
},
'required': ['knowledgeBaseId', 'locationId', 'urls'],
},
),
# ----- Vibe AI -----
Tool(
name='ghl_vibe_ai_chat_get',
description='Get chat messages from a Vibe AI project',
inputSchema={
'type': 'object',
'properties': {
'projectId': {'type': 'string', 'description': 'Vibe AI project ID'},
'limit': {'type': 'string', 'default': '100'},
'offset': {'type': 'string', 'default': '0'},
},
'required': ['projectId'],
},
),
Tool(
name='ghl_vibe_ai_sandbox_keepalive',
description='Keep Vibe AI sandbox alive',
inputSchema={
'type': 'object',
'properties': {
'projectId': {'type': 'string', 'description': 'Vibe AI project ID'},
},
'required': ['projectId'],
},
),
# ----- Funnels -----
Tool(
name='ghl_funnel_create',
description='Create a funnel',
inputSchema={
'type': 'object',
'properties': {
'name': {'type': 'string', 'description': 'Funnel name'},
'description': {'type': 'string', 'description': 'Funnel description'},
},
'required': ['name'],
},
),
Tool(
name='ghl_funnel_create_step',
description='Create a funnel step',
inputSchema={
'type': 'object',
'properties': {
'funnelId': {'type': 'string', 'description': 'Funnel ID'},
'stepName': {'type': 'string', 'description': 'Step name'},
'stepType': {'type': 'string', 'description': 'Step type'},
'stepConfig': {
'type': 'object',
'description': 'Step configuration (JSON object)',
},
},
'required': ['funnelId', 'stepName', 'stepType'],
},
),
Tool(
name='ghl_funnel_geo_location',
description='Set geo-location targeting for a funnel',
inputSchema={
'type': 'object',
'properties': {
'funnelId': {'type': 'string', 'description': 'Funnel ID'},
'latitude': {'type': 'number', 'description': 'Latitude'},
'longitude': {'type': 'number', 'description': 'Longitude'},
'radius': {'type': 'number', 'description': 'Radius in meters'},
},
'required': ['funnelId', 'latitude', 'longitude', 'radius'],
},
),
# ----- Feature Flags -----
Tool(
name='ghl_feature_flags_get',
description='Get feature flags for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
# ----- Facebook Integration -----
Tool(
name='ghl_facebook_connection_get',
description='Get Facebook connection for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_facebook_linked_pages_get',
description='Get linked Facebook pages for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
# ----- Chat Widget -----
Tool(
name='ghl_chat_widget_get',
description='Get chat widget settings',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
# ----- WhatsApp Phone Numbers -----
Tool(
name='ghl_whatsapp_phone_numbers_get',
description='Get WhatsApp phone numbers for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
# ----- Forms -----
Tool(
name='ghl_forms_get',
description='Get forms',
inputSchema={
'type': 'object',
'properties': {},
'required': [],
},
),
# ----- Custom Values -----
Tool(
name='ghl_custom_values_get',
description='Get custom values for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
# ----- Payments Currency -----
Tool(
name='ghl_payments_currency_get',
description='Get payment currencies',
inputSchema={
'type': 'object',
'properties': {},
'required': [],
},
),
# ----- Social Media Accounts -----
Tool(
name='ghl_social_media_accounts_get',
description='Get social media accounts for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
# ----- Templates -----
Tool(
name='ghl_templates_list',
description='Get list of templates',
inputSchema={
'type': 'object',
'properties': {},
'required': [],
},
),
# ----- Pipelines -----
Tool(
name='ghl_pipelines_get',
description='Get all pipelines for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_pipeline_create',
description='Create a pipeline',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'name': {'type': 'string', 'description': 'Pipeline name'},
'description': {'type': 'string', 'description': 'Pipeline description (optional)'},
},
'required': ['locationId', 'name'],
},
),
Tool(
name='ghl_pipeline_get',
description='Get a specific pipeline by ID',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['pipelineId', 'locationId'],
},
),
Tool(
name='ghl_pipeline_update',
description='Update a pipeline',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'name': {'type': 'string', 'description': 'Pipeline name (optional)'},
'description': {'type': 'string', 'description': 'Pipeline description (optional)'},
},
'required': ['pipelineId', 'locationId'],
},
),
Tool(
name='ghl_pipeline_delete',
description='Delete a pipeline',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['pipelineId', 'locationId'],
},
),
Tool(
name='ghl_pipeline_stages_get',
description='Get all stages for a pipeline',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['pipelineId', 'locationId'],
},
),
Tool(
name='ghl_pipeline_stage_create',
description='Create a stage in a pipeline',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'stageName': {'type': 'string', 'description': 'Stage name'},
'stageType': {'type': 'string', 'description': 'Stage type (e.g., open, won, lost)'},
'sort': {'type': 'number', 'description': 'Sort order (optional)'},
},
'required': ['pipelineId', 'locationId', 'stageName', 'stageType'],
},
),
Tool(
name='ghl_pipeline_stage_update',
description='Update a pipeline stage',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'stageId': {'type': 'string', 'description': 'Stage ID'},
'stageName': {'type': 'string', 'description': 'Stage name (optional)'},
'stageType': {'type': 'string', 'description': 'Stage type (optional)'},
'sort': {'type': 'number', 'description': 'Sort order (optional)'},
},
'required': ['pipelineId', 'locationId', 'stageId'],
},
),
Tool(
name='ghl_pipeline_stage_delete',
description='Delete a pipeline stage',
inputSchema={
'type': 'object',
'properties': {
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'stageId': {'type': 'string', 'description': 'Stage ID'},
},
'required': ['pipelineId', 'locationId', 'stageId'],
},
),
# ----- Opportunities -----
Tool(
name='ghl_opportunities_get',
description='Get all opportunities for a location',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'pipelineId': {
'type': 'string',
'description': 'Filter by pipeline ID (optional)',
},
'stageId': {
'type': 'string',
'description': 'Filter by stage ID (optional)',
},
'limit': {'type': 'string', 'default': '100'},
'offset': {'type': 'string', 'default': '0'},
},
'required': ['locationId'],
},
),
Tool(
name='ghl_opportunity_create',
description='Create an opportunity',
inputSchema={
'type': 'object',
'properties': {
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'pipelineId': {'type': 'string', 'description': 'Pipeline ID'},
'stageId': {'type': 'string', 'description': 'Stage ID'},
'contactId': {'type': 'string', 'description': 'Contact ID (optional)'},
'title': {'type': 'string', 'description': 'Opportunity title'},
'value': {'type': 'number', 'description': 'Opportunity value (optional)'},
'probability': {'type': 'number', 'description': 'Probability percentage (optional)'},
'expectedCloseDate': {'type': 'string', 'description': 'Expected close date (ISO string, optional)'},
'source': {'type': 'string', 'description': 'Source (optional)'},
'sourceUrl': {'type': 'string', 'description': 'Source URL (optional)'},
'assignedTo': {'type': 'string', 'description': 'Assigned to user ID (optional)'},
'tags': {
'type': 'array',
'items': {'type': 'string'},
'description': 'Tags (optional)',
},
},
'required': ['locationId', 'pipelineId', 'stageId', 'title'],
},
),
Tool(
name='ghl_opportunity_get',
description='Get a specific opportunity by ID',
inputSchema={
'type': 'object',
'properties': {
'opportunityId': {'type': 'string', 'description': 'Opportunity ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['opportunityId', 'locationId'],
},
),
Tool(
name='ghl_opportunity_update',
description='Update an opportunity',
inputSchema={
'type': 'object',
'properties': {
'opportunityId': {'type': 'string', 'description': 'Opportunity ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
'pipelineId': {'type': 'string', 'description': 'Pipeline ID (optional)'},
'stageId': {'type': 'string', 'description': 'Stage ID (optional)'},
'contactId': {'type': 'string', 'description': 'Contact ID (optional)'},
'title': {'type': 'string', 'description': 'Opportunity title (optional)'},
'value': {'type': 'number', 'description': 'Opportunity value (optional)'},
'probability': {'type': 'number', 'description': 'Probability percentage (optional)'},
'expectedCloseDate': {'type': 'string', 'description': 'Expected close date (ISO string, optional)'},
'source': {'type': 'string', 'description': 'Source (optional)'},
'sourceUrl': {'type': 'string', 'description': 'Source URL (optional)'},
'assignedTo': {'type': 'string', 'description': 'Assigned to user ID (optional)'},
'tags': {
'type': 'array',
'items': {'type': 'string'},
'description': 'Tags (optional)',
},
},
'required': ['opportunityId', 'locationId'],
},
),
Tool(
name='ghl_opportunity_delete',
description='Delete an opportunity',
inputSchema={
'type': 'object',
'properties': {
'opportunityId': {'type': 'string', 'description': 'Opportunity ID'},
'locationId': {
'type': 'string',
'description': 'Location ID (uses GHL_LOCATION_ID if omitted)',
},
},
'required': ['opportunityId', 'locationId'],
},
),
]
@server.list_tools()
async def handle_list_tools() -> List[Tool]:
return TOOLS
@server.call_tool()
async def handle_call_tool(name: str, arguments: Optional[Dict[str, Any]]) -> List[Dict]:
if arguments is None:
arguments = {}
loc_id = arguments.get('locationId') or GHL_LOCATION_ID
try:
# ----- Agent Studio -----
if name == 'ghl_agent_studio_create_agent':
resp = await ghl_request(
'POST',
'/agent-studio/agent',
json_data={
'locationId': loc_id,
'agentName': arguments.get('agentName'),
'agentPrompt': arguments.get('agentPrompt'),
'welcomeMessage': arguments.get('welcomeMessage'),
},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_agent_studio_get_agents':
resp = await ghl_request(
'GET',
'/agent-studio/agent',
params={
'locationId': loc_id,
'limit': arguments.get('limit', '100'),
'offset': arguments.get('offset', '0'),
},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_agent_studio_get_agent':
resp = await ghl_request(
'GET',
f'/agent-studio/agent/{arguments.get("agentId")}',
params={'locationId': loc_id},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_agent_studio_execute_agent':
body = {
'locationId': loc_id,
'message': arguments.get('message'),
}
if arguments.get('executionId'):
body['executionId'] = arguments.get('executionId')
resp = await ghl_request(
'POST',
f'/agent-studio/agent/{arguments.get("agentId")}/execute',
json_data=body,
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
# ----- Conversation AI -----
if name == 'ghl_conversation_ai_create_agent':
resp = await ghl_request(
'POST',
'/conversation-ai/agent',
json_data={
'agentName': arguments.get('agentName'),
'agentRole': arguments.get('agentRole'),
},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_conversation_ai_search_agents':
resp = await ghl_request(
'GET',
'/conversation-ai/agents/search',
params={
'query': arguments.get('query'),
'limit': arguments.get('limit', 100),
},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_conversation_ai_get_agent':
resp = await ghl_request(
'GET',
f'/conversation-ai/agent/{arguments.get("agentId")}',
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_conversation_ai_update_agent':
updates: Dict[str, Any] = {}
if arguments.get('agentName') is not None:
updates['agentName'] = arguments.get('agentName')
if arguments.get('agentStatus') is not None:
updates['agentStatus'] = arguments.get('agentStatus')
resp = await ghl_request(
'PUT',
f'/conversation-ai/agent/{arguments.get("agentId")}',
json_data=updates,
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_conversation_ai_delete_agent':
resp = await ghl_request(
'DELETE',
f'/conversation-ai/agent/{arguments.get("agentId")}',
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
# ----- Voice AI -----
if name == 'ghl_voice_ai_create_agent':
resp = await ghl_request(
'POST',
'/voice-ai/agent',
json_data={
'locationId': loc_id,
'agentName': arguments.get('agentName'),
'agentPrompt': arguments.get('agentPrompt'),
'welcomeMessage': arguments.get('welcomeMessage'),
'voiceId': arguments.get('voiceId'),
},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_voice_ai_get_agents':
resp = await ghl_request(
'GET',
'/voice-ai/agents',
params={
'locationId': loc_id,
'page': arguments.get('page', 1),
'pageSize': arguments.get('pageSize', 20),
},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_voice_ai_get_agent':
resp = await ghl_request(
'GET',
f'/voice-ai/agent/{arguments.get("agentId")}',
params={'locationId': loc_id},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_voice_ai_delete_agent':
resp = await ghl_request(
'DELETE',
f'/voice-ai/agent/{arguments.get("agentId")}',
params={'locationId': loc_id},
)
return [{'type': 'text', 'text': json.dumps(resp, indent=2)}]
if name == 'ghl_voice_ai_get_call_logs':
resp = await ghl_request(
'GET',
'/voice-ai/call-logs',
params={
'locationId': loc_id,
'agentId': arguments.get('agentId'),
'page': arguments.get('page', 1),