archal 0.9.18 → 0.9.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/README.md +9 -1
  2. package/agents/github-octokit/.archal.json +8 -0
  3. package/agents/github-octokit/Dockerfile +8 -0
  4. package/agents/github-octokit/README.md +113 -0
  5. package/agents/github-octokit/agent.mjs +54 -0
  6. package/agents/github-octokit/package.json +9 -0
  7. package/agents/github-octokit/scenarios/test-repo-access.md +27 -0
  8. package/agents/google-workspace-local-tools/Dockerfile +6 -0
  9. package/agents/google-workspace-local-tools/README.md +58 -0
  10. package/agents/google-workspace-local-tools/agent.mjs +196 -0
  11. package/agents/google-workspace-local-tools/archal-harness.json +7 -0
  12. package/agents/google-workspace-local-tools/run-input.yaml +16 -0
  13. package/agents/google-workspace-local-tools/scenario.md +29 -0
  14. package/agents/hermes/.archal.json +8 -0
  15. package/agents/hermes/Dockerfile +46 -0
  16. package/agents/hermes/README.md +87 -0
  17. package/agents/hermes/SOUL.md +27 -0
  18. package/agents/hermes/config.yaml +34 -0
  19. package/agents/hermes/drive.mjs +113 -0
  20. package/agents/hermes/scenarios/stripe-customers-read-only.md +32 -0
  21. package/agents/openclaw/.archal.json +8 -0
  22. package/agents/openclaw/Dockerfile +96 -0
  23. package/agents/openclaw/README.md +120 -0
  24. package/agents/openclaw/drive.mjs +311 -0
  25. package/agents/openclaw/package.json +9 -0
  26. package/agents/openclaw/scenarios/github-issue-triage-read-only.md +44 -0
  27. package/agents/openclaw/workspace/AGENTS.md +23 -0
  28. package/agents/openclaw/workspace/IDENTITY.md +8 -0
  29. package/agents/openclaw/workspace/SOUL.md +14 -0
  30. package/agents/openclaw/workspace/TOOLS.md +35 -0
  31. package/agents/pagination-test/README.md +24 -0
  32. package/agents/pagination-test/scenario.md +24 -0
  33. package/agents/replay-capsule-harness/README.md +29 -0
  34. package/agents/replay-capsule-harness/observability-install-offline-e2e.mts +1517 -0
  35. package/agents/replay-capsule-harness/replay-capsule-e2e.mjs +104 -0
  36. package/clone-assets/apify/tools.json +213 -13
  37. package/clone-assets/calcom/tools.json +510 -0
  38. package/clone-assets/clickup/tools.json +1258 -0
  39. package/clone-assets/customerio/tools.json +386 -0
  40. package/clone-assets/datadog/tools.json +734 -0
  41. package/clone-assets/github/tools.json +312 -25
  42. package/clone-assets/gitlab/tools.json +999 -0
  43. package/clone-assets/google-workspace/tools.json +18 -6
  44. package/clone-assets/hubspot/tools.json +1406 -0
  45. package/clone-assets/jira/fidelity.json +1 -1
  46. package/clone-assets/jira/tools.json +266 -543
  47. package/clone-assets/linear/tools.json +238 -40
  48. package/clone-assets/ownerrez/tools.json +548 -0
  49. package/clone-assets/pricelabs/tools.json +343 -0
  50. package/clone-assets/sentry/tools.json +745 -0
  51. package/clone-assets/slack/tools.json +1 -2
  52. package/clone-assets/stripe/tools.json +185 -46
  53. package/clone-assets/supabase/tools.json +511 -14
  54. package/clone-assets/unipile/tools.json +408 -0
  55. package/clone-assets/webflow/tools.json +415 -0
  56. package/dist/autoloop-worker-types-BEb_E44z.d.cts +196 -0
  57. package/dist/cli.cjs +151033 -75282
  58. package/dist/commands/autoloop-hosted-worker.cjs +43942 -0
  59. package/dist/commands/autoloop-hosted-worker.d.cts +143 -0
  60. package/dist/commands/autoloop-pr-verification.cjs +4227 -0
  61. package/dist/commands/autoloop-pr-verification.d.cts +17 -0
  62. package/dist/{vitest/chunk-IVXSSEYS.js → commands/autoloop-result-parser.cjs} +16515 -18857
  63. package/dist/commands/autoloop-result-parser.d.cts +39 -0
  64. package/dist/commands/autoloop-worker.cjs +36163 -0
  65. package/dist/commands/autoloop-worker.d.cts +97 -0
  66. package/dist/harness.cjs +1 -0
  67. package/dist/index.cjs +1 -1
  68. package/dist/replay.cjs +49624 -0
  69. package/dist/replay.d.cts +4625 -0
  70. package/dist/scenarios.cjs +80343 -0
  71. package/dist/scenarios.d.cts +562 -0
  72. package/dist/vitest/chunk-6CBYFCFK.js +4667 -0
  73. package/dist/vitest/chunk-ARVS45PP.js +2764 -0
  74. package/dist/vitest/index.cjs +6079 -75089
  75. package/dist/vitest/index.d.ts +7 -6
  76. package/dist/vitest/index.js +8 -8
  77. package/dist/vitest/runtime/hosted-session-reaper.cjs +801 -34187
  78. package/dist/vitest/runtime/hosted-session-reaper.js +1 -1
  79. package/dist/vitest/runtime/setup-files.js +2 -2
  80. package/package.json +14 -9
  81. package/skills/archal-agent/SKILL.md +87 -0
  82. package/skills/autoloop/SKILL.md +376 -0
  83. package/skills/autoloop/references/hosted-sources.md +62 -0
  84. package/skills/autoloop/references/trace-schema-mapping.md +73 -0
  85. package/skills/eval/SKILL.md +35 -1
  86. package/skills/install-agent/SKILL.md +221 -0
  87. package/skills/onboard/SKILL.md +80 -0
  88. package/skills/scenario/SKILL.md +19 -4
  89. package/skills/seed/SKILL.md +237 -0
  90. package/dist/seed/dynamic-generator.cjs +0 -45564
  91. package/dist/seed/dynamic-generator.d.cts +0 -106
  92. package/dist/vitest/chunk-CTSN67QR.js +0 -47188
@@ -0,0 +1,1406 @@
1
+ {
2
+ "clone": "hubspot",
3
+ "tools": [
4
+ {
5
+ "name": "get_crm_v3_objects_products_product_id__get_by_id",
6
+ "description": "Get a HubSpot CRM product by object id.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false,
13
+ "annotations": {
14
+ "readOnlyHint": true
15
+ }
16
+ },
17
+ {
18
+ "name": "hubspot-get-user-details",
19
+ "description": "Authenticate and analyze the current HubSpot access token.",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {},
23
+ "additionalProperties": false
24
+ },
25
+ "hidden": false,
26
+ "annotations": {
27
+ "readOnlyHint": true
28
+ }
29
+ },
30
+ {
31
+ "name": "hubspot-list-objects",
32
+ "description": "Retrieve a paginated list of HubSpot objects.",
33
+ "inputSchema": {
34
+ "type": "object",
35
+ "properties": {
36
+ "objectType": {
37
+ "type": "string"
38
+ },
39
+ "limit": {
40
+ "default": 100,
41
+ "type": "integer",
42
+ "minimum": 1,
43
+ "maximum": 500
44
+ },
45
+ "after": {
46
+ "type": "string"
47
+ },
48
+ "properties": {
49
+ "type": "array",
50
+ "items": {
51
+ "type": "string"
52
+ }
53
+ },
54
+ "associations": {
55
+ "type": "array",
56
+ "items": {
57
+ "type": "string"
58
+ }
59
+ },
60
+ "archived": {
61
+ "default": false,
62
+ "type": "boolean"
63
+ }
64
+ },
65
+ "required": [
66
+ "objectType"
67
+ ],
68
+ "additionalProperties": false
69
+ },
70
+ "hidden": false,
71
+ "annotations": {
72
+ "readOnlyHint": true
73
+ }
74
+ },
75
+ {
76
+ "name": "hubspot-search-objects",
77
+ "description": "Search HubSpot objects by query or filter criteria.",
78
+ "inputSchema": {
79
+ "type": "object",
80
+ "properties": {
81
+ "objectType": {
82
+ "type": "string"
83
+ },
84
+ "query": {
85
+ "type": "string"
86
+ },
87
+ "limit": {
88
+ "default": 10,
89
+ "type": "integer",
90
+ "minimum": 1,
91
+ "maximum": 100
92
+ },
93
+ "after": {
94
+ "type": "string"
95
+ },
96
+ "properties": {
97
+ "type": "array",
98
+ "items": {
99
+ "type": "string"
100
+ }
101
+ },
102
+ "sorts": {
103
+ "type": "array",
104
+ "items": {
105
+ "type": "object",
106
+ "properties": {
107
+ "propertyName": {
108
+ "type": "string"
109
+ },
110
+ "direction": {
111
+ "type": "string",
112
+ "enum": [
113
+ "ASCENDING",
114
+ "DESCENDING"
115
+ ]
116
+ }
117
+ },
118
+ "required": [
119
+ "propertyName",
120
+ "direction"
121
+ ],
122
+ "additionalProperties": false
123
+ }
124
+ },
125
+ "filterGroups": {
126
+ "type": "array",
127
+ "items": {
128
+ "type": "object",
129
+ "properties": {
130
+ "filters": {
131
+ "type": "array",
132
+ "items": {
133
+ "type": "object",
134
+ "properties": {
135
+ "propertyName": {
136
+ "type": "string"
137
+ },
138
+ "operator": {
139
+ "type": "string",
140
+ "enum": [
141
+ "EQ",
142
+ "NEQ",
143
+ "LT",
144
+ "LTE",
145
+ "GT",
146
+ "GTE",
147
+ "BETWEEN",
148
+ "IN",
149
+ "NOT_IN",
150
+ "HAS_PROPERTY",
151
+ "NOT_HAS_PROPERTY",
152
+ "CONTAINS_TOKEN",
153
+ "NOT_CONTAINS_TOKEN"
154
+ ]
155
+ },
156
+ "value": {},
157
+ "values": {
158
+ "type": "array",
159
+ "items": {}
160
+ },
161
+ "highValue": {}
162
+ },
163
+ "required": [
164
+ "propertyName",
165
+ "operator"
166
+ ],
167
+ "additionalProperties": false
168
+ }
169
+ }
170
+ },
171
+ "required": [
172
+ "filters"
173
+ ],
174
+ "additionalProperties": false
175
+ }
176
+ }
177
+ },
178
+ "required": [
179
+ "objectType"
180
+ ],
181
+ "additionalProperties": false
182
+ },
183
+ "hidden": false,
184
+ "annotations": {
185
+ "readOnlyHint": true
186
+ }
187
+ },
188
+ {
189
+ "name": "hubspot-batch-create-objects",
190
+ "description": "Create multiple HubSpot CRM objects in one call.",
191
+ "inputSchema": {
192
+ "type": "object",
193
+ "properties": {
194
+ "objectType": {
195
+ "type": "string"
196
+ },
197
+ "inputs": {
198
+ "maxItems": 100,
199
+ "type": "array",
200
+ "items": {
201
+ "type": "object",
202
+ "properties": {
203
+ "properties": {
204
+ "type": "object",
205
+ "propertyNames": {
206
+ "type": "string"
207
+ },
208
+ "additionalProperties": {
209
+ "anyOf": [
210
+ {
211
+ "type": "string"
212
+ },
213
+ {
214
+ "type": "number"
215
+ },
216
+ {
217
+ "type": "boolean"
218
+ },
219
+ {
220
+ "type": "null"
221
+ }
222
+ ]
223
+ }
224
+ },
225
+ "associations": {
226
+ "type": "array",
227
+ "items": {
228
+ "type": "object",
229
+ "properties": {
230
+ "types": {
231
+ "minItems": 1,
232
+ "type": "array",
233
+ "items": {
234
+ "type": "object",
235
+ "properties": {
236
+ "associationCategory": {
237
+ "type": "string",
238
+ "enum": [
239
+ "HUBSPOT_DEFINED",
240
+ "USER_DEFINED",
241
+ "INTEGRATOR_DEFINED"
242
+ ]
243
+ },
244
+ "associationTypeId": {
245
+ "type": "integer",
246
+ "exclusiveMinimum": 0,
247
+ "maximum": 9007199254740991
248
+ }
249
+ },
250
+ "required": [
251
+ "associationCategory",
252
+ "associationTypeId"
253
+ ],
254
+ "additionalProperties": false
255
+ }
256
+ },
257
+ "to": {
258
+ "type": "object",
259
+ "properties": {
260
+ "id": {
261
+ "type": "string"
262
+ }
263
+ },
264
+ "required": [
265
+ "id"
266
+ ],
267
+ "additionalProperties": false
268
+ }
269
+ },
270
+ "required": [
271
+ "types",
272
+ "to"
273
+ ],
274
+ "additionalProperties": false
275
+ }
276
+ },
277
+ "objectWriteTraceId": {
278
+ "type": "string"
279
+ }
280
+ },
281
+ "required": [
282
+ "properties"
283
+ ],
284
+ "additionalProperties": false
285
+ }
286
+ },
287
+ "body": {
288
+ "type": "object",
289
+ "properties": {
290
+ "inputs": {
291
+ "maxItems": 100,
292
+ "type": "array",
293
+ "items": {
294
+ "type": "object",
295
+ "properties": {
296
+ "properties": {
297
+ "type": "object",
298
+ "propertyNames": {
299
+ "type": "string"
300
+ },
301
+ "additionalProperties": {
302
+ "anyOf": [
303
+ {
304
+ "type": "string"
305
+ },
306
+ {
307
+ "type": "number"
308
+ },
309
+ {
310
+ "type": "boolean"
311
+ },
312
+ {
313
+ "type": "null"
314
+ }
315
+ ]
316
+ }
317
+ },
318
+ "associations": {
319
+ "type": "array",
320
+ "items": {
321
+ "type": "object",
322
+ "properties": {
323
+ "types": {
324
+ "minItems": 1,
325
+ "type": "array",
326
+ "items": {
327
+ "type": "object",
328
+ "properties": {
329
+ "associationCategory": {
330
+ "type": "string",
331
+ "enum": [
332
+ "HUBSPOT_DEFINED",
333
+ "USER_DEFINED",
334
+ "INTEGRATOR_DEFINED"
335
+ ]
336
+ },
337
+ "associationTypeId": {
338
+ "type": "integer",
339
+ "exclusiveMinimum": 0,
340
+ "maximum": 9007199254740991
341
+ }
342
+ },
343
+ "required": [
344
+ "associationCategory",
345
+ "associationTypeId"
346
+ ],
347
+ "additionalProperties": false
348
+ }
349
+ },
350
+ "to": {
351
+ "type": "object",
352
+ "properties": {
353
+ "id": {
354
+ "type": "string"
355
+ }
356
+ },
357
+ "required": [
358
+ "id"
359
+ ],
360
+ "additionalProperties": false
361
+ }
362
+ },
363
+ "required": [
364
+ "types",
365
+ "to"
366
+ ],
367
+ "additionalProperties": false
368
+ }
369
+ },
370
+ "objectWriteTraceId": {
371
+ "type": "string"
372
+ }
373
+ },
374
+ "required": [
375
+ "properties"
376
+ ],
377
+ "additionalProperties": false
378
+ }
379
+ }
380
+ },
381
+ "required": [
382
+ "inputs"
383
+ ],
384
+ "additionalProperties": false
385
+ }
386
+ },
387
+ "required": [
388
+ "objectType",
389
+ "inputs"
390
+ ],
391
+ "additionalProperties": false
392
+ },
393
+ "hidden": false
394
+ },
395
+ {
396
+ "name": "hubspot-batch-read-objects",
397
+ "description": "Read multiple HubSpot CRM objects by id.",
398
+ "inputSchema": {
399
+ "type": "object",
400
+ "properties": {
401
+ "objectType": {
402
+ "type": "string"
403
+ },
404
+ "inputs": {
405
+ "maxItems": 100,
406
+ "type": "array",
407
+ "items": {
408
+ "type": "object",
409
+ "properties": {
410
+ "id": {
411
+ "type": "string"
412
+ }
413
+ },
414
+ "required": [
415
+ "id"
416
+ ],
417
+ "additionalProperties": false
418
+ }
419
+ },
420
+ "properties": {
421
+ "type": "array",
422
+ "items": {
423
+ "type": "string"
424
+ }
425
+ },
426
+ "propertiesWithHistory": {
427
+ "type": "array",
428
+ "items": {
429
+ "type": "string"
430
+ }
431
+ },
432
+ "body": {
433
+ "type": "object",
434
+ "properties": {
435
+ "inputs": {
436
+ "maxItems": 100,
437
+ "type": "array",
438
+ "items": {
439
+ "type": "object",
440
+ "properties": {
441
+ "id": {
442
+ "type": "string"
443
+ }
444
+ },
445
+ "required": [
446
+ "id"
447
+ ],
448
+ "additionalProperties": false
449
+ }
450
+ },
451
+ "properties": {
452
+ "type": "array",
453
+ "items": {
454
+ "type": "string"
455
+ }
456
+ },
457
+ "propertiesWithHistory": {
458
+ "type": "array",
459
+ "items": {
460
+ "type": "string"
461
+ }
462
+ }
463
+ },
464
+ "required": [
465
+ "inputs"
466
+ ],
467
+ "additionalProperties": false
468
+ }
469
+ },
470
+ "required": [
471
+ "objectType"
472
+ ],
473
+ "additionalProperties": false
474
+ },
475
+ "hidden": false,
476
+ "annotations": {
477
+ "readOnlyHint": true
478
+ }
479
+ },
480
+ {
481
+ "name": "hubspot-batch-update-objects",
482
+ "description": "Update multiple HubSpot CRM objects in one call.",
483
+ "inputSchema": {
484
+ "type": "object",
485
+ "properties": {
486
+ "objectType": {
487
+ "type": "string"
488
+ },
489
+ "inputs": {
490
+ "default": [],
491
+ "minItems": 1,
492
+ "maxItems": 100,
493
+ "type": "array",
494
+ "items": {
495
+ "type": "object",
496
+ "properties": {
497
+ "id": {
498
+ "type": "string"
499
+ },
500
+ "properties": {
501
+ "default": {},
502
+ "type": "object",
503
+ "propertyNames": {
504
+ "type": "string"
505
+ },
506
+ "additionalProperties": {
507
+ "anyOf": [
508
+ {
509
+ "type": "string"
510
+ },
511
+ {
512
+ "type": "number"
513
+ },
514
+ {
515
+ "type": "boolean"
516
+ },
517
+ {
518
+ "type": "null"
519
+ }
520
+ ]
521
+ }
522
+ },
523
+ "idProperty": {
524
+ "type": "string"
525
+ },
526
+ "objectWriteTraceId": {
527
+ "type": "string"
528
+ }
529
+ },
530
+ "required": [
531
+ "properties"
532
+ ],
533
+ "additionalProperties": false
534
+ }
535
+ },
536
+ "body": {
537
+ "type": "object",
538
+ "properties": {
539
+ "inputs": {
540
+ "minItems": 1,
541
+ "maxItems": 100,
542
+ "type": "array",
543
+ "items": {
544
+ "type": "object",
545
+ "properties": {
546
+ "id": {
547
+ "type": "string"
548
+ },
549
+ "properties": {
550
+ "default": {},
551
+ "type": "object",
552
+ "propertyNames": {
553
+ "type": "string"
554
+ },
555
+ "additionalProperties": {
556
+ "anyOf": [
557
+ {
558
+ "type": "string"
559
+ },
560
+ {
561
+ "type": "number"
562
+ },
563
+ {
564
+ "type": "boolean"
565
+ },
566
+ {
567
+ "type": "null"
568
+ }
569
+ ]
570
+ }
571
+ },
572
+ "idProperty": {
573
+ "type": "string"
574
+ },
575
+ "objectWriteTraceId": {
576
+ "type": "string"
577
+ }
578
+ },
579
+ "required": [
580
+ "properties"
581
+ ],
582
+ "additionalProperties": false
583
+ }
584
+ }
585
+ },
586
+ "required": [
587
+ "inputs"
588
+ ],
589
+ "additionalProperties": false
590
+ }
591
+ },
592
+ "additionalProperties": false
593
+ },
594
+ "hidden": false
595
+ },
596
+ {
597
+ "name": "hubspot-get-association-definitions",
598
+ "description": "Retrieve valid contact-company association definitions.",
599
+ "inputSchema": {
600
+ "type": "object",
601
+ "properties": {
602
+ "fromObjectType": {
603
+ "type": "string",
604
+ "enum": [
605
+ "contacts"
606
+ ]
607
+ },
608
+ "toObjectType": {
609
+ "type": "string",
610
+ "enum": [
611
+ "companies"
612
+ ]
613
+ }
614
+ },
615
+ "required": [
616
+ "fromObjectType",
617
+ "toObjectType"
618
+ ],
619
+ "additionalProperties": false
620
+ },
621
+ "hidden": false,
622
+ "annotations": {
623
+ "readOnlyHint": true
624
+ }
625
+ },
626
+ {
627
+ "name": "hubspot-batch-create-associations",
628
+ "description": "Create HubSpot CRM associations in batch.",
629
+ "inputSchema": {
630
+ "type": "object",
631
+ "properties": {
632
+ "fromObjectType": {
633
+ "type": "string",
634
+ "enum": [
635
+ "contacts"
636
+ ]
637
+ },
638
+ "toObjectType": {
639
+ "type": "string",
640
+ "enum": [
641
+ "companies"
642
+ ]
643
+ },
644
+ "types": {
645
+ "minItems": 1,
646
+ "type": "array",
647
+ "items": {
648
+ "type": "object",
649
+ "properties": {
650
+ "associationCategory": {
651
+ "type": "string",
652
+ "enum": [
653
+ "HUBSPOT_DEFINED",
654
+ "USER_DEFINED",
655
+ "INTEGRATOR_DEFINED"
656
+ ]
657
+ },
658
+ "associationTypeId": {
659
+ "type": "integer",
660
+ "exclusiveMinimum": 0,
661
+ "maximum": 9007199254740991
662
+ }
663
+ },
664
+ "required": [
665
+ "associationCategory",
666
+ "associationTypeId"
667
+ ],
668
+ "additionalProperties": false
669
+ }
670
+ },
671
+ "inputs": {
672
+ "minItems": 1,
673
+ "type": "array",
674
+ "items": {
675
+ "type": "object",
676
+ "properties": {
677
+ "from": {
678
+ "type": "object",
679
+ "properties": {
680
+ "id": {
681
+ "type": "string"
682
+ }
683
+ },
684
+ "required": [
685
+ "id"
686
+ ],
687
+ "additionalProperties": false
688
+ },
689
+ "to": {
690
+ "type": "object",
691
+ "properties": {
692
+ "id": {
693
+ "type": "string"
694
+ }
695
+ },
696
+ "required": [
697
+ "id"
698
+ ],
699
+ "additionalProperties": false
700
+ }
701
+ },
702
+ "required": [
703
+ "from",
704
+ "to"
705
+ ],
706
+ "additionalProperties": false
707
+ }
708
+ }
709
+ },
710
+ "required": [
711
+ "fromObjectType",
712
+ "toObjectType",
713
+ "types",
714
+ "inputs"
715
+ ],
716
+ "additionalProperties": false
717
+ },
718
+ "hidden": false
719
+ },
720
+ {
721
+ "name": "hubspot-list-associations",
722
+ "description": "List HubSpot CRM associations for a specific object.",
723
+ "inputSchema": {
724
+ "type": "object",
725
+ "properties": {
726
+ "objectType": {
727
+ "type": "string",
728
+ "enum": [
729
+ "contacts"
730
+ ]
731
+ },
732
+ "objectId": {
733
+ "type": "string"
734
+ },
735
+ "toObjectType": {
736
+ "type": "string",
737
+ "enum": [
738
+ "companies"
739
+ ]
740
+ },
741
+ "after": {
742
+ "type": "string"
743
+ }
744
+ },
745
+ "required": [
746
+ "objectType",
747
+ "objectId",
748
+ "toObjectType"
749
+ ],
750
+ "additionalProperties": false
751
+ },
752
+ "hidden": false,
753
+ "annotations": {
754
+ "readOnlyHint": true
755
+ }
756
+ },
757
+ {
758
+ "name": "hubspot-list-properties",
759
+ "description": "List HubSpot CRM property definitions for a standard object type.",
760
+ "inputSchema": {
761
+ "type": "object",
762
+ "properties": {
763
+ "objectType": {
764
+ "type": "string"
765
+ }
766
+ },
767
+ "required": [
768
+ "objectType"
769
+ ],
770
+ "additionalProperties": false
771
+ },
772
+ "hidden": false,
773
+ "annotations": {
774
+ "readOnlyHint": true
775
+ }
776
+ },
777
+ {
778
+ "name": "hubspot-get-schema",
779
+ "description": "Retrieve a HubSpot object schema.",
780
+ "inputSchema": {
781
+ "type": "object",
782
+ "properties": {
783
+ "objectType": {
784
+ "type": "string"
785
+ }
786
+ },
787
+ "required": [
788
+ "objectType"
789
+ ],
790
+ "additionalProperties": false
791
+ },
792
+ "hidden": false,
793
+ "annotations": {
794
+ "readOnlyHint": true
795
+ }
796
+ },
797
+ {
798
+ "name": "hubspot-get-property",
799
+ "description": "Retrieve metadata for a specific HubSpot property.",
800
+ "inputSchema": {
801
+ "type": "object",
802
+ "properties": {
803
+ "objectType": {
804
+ "type": "string"
805
+ },
806
+ "propertyName": {
807
+ "type": "string"
808
+ }
809
+ },
810
+ "required": [
811
+ "objectType",
812
+ "propertyName"
813
+ ],
814
+ "additionalProperties": false
815
+ },
816
+ "hidden": false,
817
+ "annotations": {
818
+ "readOnlyHint": true
819
+ }
820
+ },
821
+ {
822
+ "name": "hubspot-create-property",
823
+ "description": "Create a HubSpot CRM property definition.",
824
+ "inputSchema": {
825
+ "type": "object",
826
+ "properties": {
827
+ "objectType": {
828
+ "type": "string"
829
+ },
830
+ "name": {
831
+ "type": "string"
832
+ },
833
+ "label": {
834
+ "type": "string"
835
+ },
836
+ "type": {
837
+ "type": "string"
838
+ },
839
+ "fieldType": {
840
+ "type": "string"
841
+ },
842
+ "groupName": {
843
+ "type": "string"
844
+ },
845
+ "description": {
846
+ "type": "string"
847
+ },
848
+ "options": {
849
+ "type": "array",
850
+ "items": {}
851
+ },
852
+ "displayOrder": {
853
+ "type": "number"
854
+ },
855
+ "hasUniqueValue": {
856
+ "type": "boolean"
857
+ },
858
+ "hidden": {
859
+ "type": "boolean"
860
+ },
861
+ "formField": {
862
+ "type": "boolean"
863
+ },
864
+ "externalOptions": {
865
+ "type": "boolean"
866
+ },
867
+ "dataSensitivity": {
868
+ "type": "string"
869
+ }
870
+ },
871
+ "required": [
872
+ "objectType"
873
+ ],
874
+ "additionalProperties": false
875
+ },
876
+ "hidden": false
877
+ },
878
+ {
879
+ "name": "hubspot-update-property",
880
+ "description": "Update metadata for a specific HubSpot property.",
881
+ "inputSchema": {
882
+ "type": "object",
883
+ "properties": {
884
+ "objectType": {
885
+ "type": "string"
886
+ },
887
+ "propertyName": {
888
+ "type": "string"
889
+ },
890
+ "label": {
891
+ "type": "string"
892
+ },
893
+ "description": {
894
+ "type": "string"
895
+ },
896
+ "groupName": {
897
+ "type": "string"
898
+ },
899
+ "type": {
900
+ "type": "string"
901
+ },
902
+ "fieldType": {
903
+ "type": "string"
904
+ },
905
+ "formField": {
906
+ "type": "boolean"
907
+ },
908
+ "hidden": {
909
+ "type": "boolean"
910
+ },
911
+ "displayOrder": {
912
+ "type": "number"
913
+ },
914
+ "hasUniqueValue": {
915
+ "type": "boolean"
916
+ },
917
+ "externalOptions": {
918
+ "type": "boolean"
919
+ },
920
+ "options": {
921
+ "type": "array",
922
+ "items": {}
923
+ },
924
+ "body": {
925
+ "type": "object",
926
+ "propertyNames": {
927
+ "type": "string"
928
+ },
929
+ "additionalProperties": {}
930
+ }
931
+ },
932
+ "required": [
933
+ "objectType",
934
+ "propertyName"
935
+ ],
936
+ "additionalProperties": false
937
+ },
938
+ "hidden": false
939
+ },
940
+ {
941
+ "name": "hubspot-generate-feedback-link",
942
+ "description": "Generate a HubSpot MCP feedback link.",
943
+ "inputSchema": {
944
+ "type": "object",
945
+ "properties": {},
946
+ "additionalProperties": false
947
+ },
948
+ "hidden": false,
949
+ "annotations": {
950
+ "readOnlyHint": true
951
+ }
952
+ },
953
+ {
954
+ "name": "hubspot-get-schemas",
955
+ "description": "List custom HubSpot object schemas.",
956
+ "inputSchema": {
957
+ "type": "object",
958
+ "properties": {},
959
+ "additionalProperties": false
960
+ },
961
+ "hidden": false,
962
+ "annotations": {
963
+ "readOnlyHint": true
964
+ }
965
+ },
966
+ {
967
+ "name": "patch_crm_object_schemas_v3_schemas_object_type__update",
968
+ "description": "Stub schema update operation.",
969
+ "inputSchema": {
970
+ "type": "object",
971
+ "properties": {
972
+ "objectType": {
973
+ "type": "string"
974
+ },
975
+ "associationIdentifier": {
976
+ "type": "string"
977
+ },
978
+ "fromObjectType": {
979
+ "type": "string"
980
+ },
981
+ "toObjectType": {
982
+ "type": "string"
983
+ },
984
+ "associationTypeId": {
985
+ "anyOf": [
986
+ {
987
+ "type": "string"
988
+ },
989
+ {
990
+ "type": "number"
991
+ }
992
+ ]
993
+ }
994
+ },
995
+ "additionalProperties": false
996
+ },
997
+ "hidden": false
998
+ },
999
+ {
1000
+ "name": "post_crm_object_schemas_v3_schemas_create",
1001
+ "description": "Stub schema create operation.",
1002
+ "inputSchema": {
1003
+ "type": "object",
1004
+ "properties": {
1005
+ "objectType": {
1006
+ "type": "string"
1007
+ },
1008
+ "associationIdentifier": {
1009
+ "type": "string"
1010
+ },
1011
+ "fromObjectType": {
1012
+ "type": "string"
1013
+ },
1014
+ "toObjectType": {
1015
+ "type": "string"
1016
+ },
1017
+ "associationTypeId": {
1018
+ "anyOf": [
1019
+ {
1020
+ "type": "string"
1021
+ },
1022
+ {
1023
+ "type": "number"
1024
+ }
1025
+ ]
1026
+ }
1027
+ },
1028
+ "additionalProperties": false
1029
+ },
1030
+ "hidden": false
1031
+ },
1032
+ {
1033
+ "name": "post_crm_object_schemas_v3_schemas_object_type_associations_create_association",
1034
+ "description": "Stub schema association create operation.",
1035
+ "inputSchema": {
1036
+ "type": "object",
1037
+ "properties": {
1038
+ "objectType": {
1039
+ "type": "string"
1040
+ },
1041
+ "associationIdentifier": {
1042
+ "type": "string"
1043
+ },
1044
+ "fromObjectType": {
1045
+ "type": "string"
1046
+ },
1047
+ "toObjectType": {
1048
+ "type": "string"
1049
+ },
1050
+ "associationTypeId": {
1051
+ "anyOf": [
1052
+ {
1053
+ "type": "string"
1054
+ },
1055
+ {
1056
+ "type": "number"
1057
+ }
1058
+ ]
1059
+ }
1060
+ },
1061
+ "additionalProperties": false
1062
+ },
1063
+ "hidden": false
1064
+ },
1065
+ {
1066
+ "name": "delete_crm_object_schemas_v3_schemas_object_type_associations_association_identifier__archive_association",
1067
+ "description": "Stub schema association archive operation.",
1068
+ "inputSchema": {
1069
+ "type": "object",
1070
+ "properties": {
1071
+ "objectType": {
1072
+ "type": "string"
1073
+ },
1074
+ "associationIdentifier": {
1075
+ "type": "string"
1076
+ },
1077
+ "fromObjectType": {
1078
+ "type": "string"
1079
+ },
1080
+ "toObjectType": {
1081
+ "type": "string"
1082
+ },
1083
+ "associationTypeId": {
1084
+ "anyOf": [
1085
+ {
1086
+ "type": "string"
1087
+ },
1088
+ {
1089
+ "type": "number"
1090
+ }
1091
+ ]
1092
+ }
1093
+ },
1094
+ "additionalProperties": false
1095
+ },
1096
+ "hidden": false
1097
+ },
1098
+ {
1099
+ "name": "post_crm_v4_associations_definitions_configurations_from_object_type_to_object_type_batch_create",
1100
+ "description": "Stub association configuration batch create operation.",
1101
+ "inputSchema": {
1102
+ "type": "object",
1103
+ "properties": {
1104
+ "objectType": {
1105
+ "type": "string"
1106
+ },
1107
+ "associationIdentifier": {
1108
+ "type": "string"
1109
+ },
1110
+ "fromObjectType": {
1111
+ "type": "string"
1112
+ },
1113
+ "toObjectType": {
1114
+ "type": "string"
1115
+ },
1116
+ "associationTypeId": {
1117
+ "anyOf": [
1118
+ {
1119
+ "type": "string"
1120
+ },
1121
+ {
1122
+ "type": "number"
1123
+ }
1124
+ ]
1125
+ }
1126
+ },
1127
+ "additionalProperties": false
1128
+ },
1129
+ "hidden": false
1130
+ },
1131
+ {
1132
+ "name": "post_crm_v4_associations_definitions_configurations_from_object_type_to_object_type_batch_update",
1133
+ "description": "Stub association configuration batch update operation.",
1134
+ "inputSchema": {
1135
+ "type": "object",
1136
+ "properties": {
1137
+ "objectType": {
1138
+ "type": "string"
1139
+ },
1140
+ "associationIdentifier": {
1141
+ "type": "string"
1142
+ },
1143
+ "fromObjectType": {
1144
+ "type": "string"
1145
+ },
1146
+ "toObjectType": {
1147
+ "type": "string"
1148
+ },
1149
+ "associationTypeId": {
1150
+ "anyOf": [
1151
+ {
1152
+ "type": "string"
1153
+ },
1154
+ {
1155
+ "type": "number"
1156
+ }
1157
+ ]
1158
+ }
1159
+ },
1160
+ "additionalProperties": false
1161
+ },
1162
+ "hidden": false
1163
+ },
1164
+ {
1165
+ "name": "hubspot-get-link",
1166
+ "description": "Generate HubSpot UI links for pages and records.",
1167
+ "inputSchema": {
1168
+ "type": "object",
1169
+ "properties": {
1170
+ "portalId": {
1171
+ "type": "string"
1172
+ },
1173
+ "uiDomain": {
1174
+ "type": "string"
1175
+ },
1176
+ "pageRequests": {
1177
+ "type": "array",
1178
+ "items": {
1179
+ "type": "object",
1180
+ "properties": {
1181
+ "pagetype": {
1182
+ "type": "string",
1183
+ "enum": [
1184
+ "record",
1185
+ "index"
1186
+ ]
1187
+ },
1188
+ "objectTypeId": {
1189
+ "type": "string"
1190
+ },
1191
+ "objectId": {
1192
+ "type": "string"
1193
+ }
1194
+ },
1195
+ "required": [
1196
+ "pagetype",
1197
+ "objectTypeId"
1198
+ ],
1199
+ "additionalProperties": false
1200
+ }
1201
+ }
1202
+ },
1203
+ "required": [
1204
+ "portalId",
1205
+ "uiDomain",
1206
+ "pageRequests"
1207
+ ],
1208
+ "additionalProperties": false
1209
+ },
1210
+ "hidden": false,
1211
+ "annotations": {
1212
+ "readOnlyHint": true
1213
+ }
1214
+ },
1215
+ {
1216
+ "name": "hubspot-list-workflows",
1217
+ "description": "List HubSpot workflows.",
1218
+ "inputSchema": {
1219
+ "type": "object",
1220
+ "properties": {
1221
+ "limit": {
1222
+ "type": "number"
1223
+ },
1224
+ "after": {
1225
+ "type": "string"
1226
+ }
1227
+ },
1228
+ "additionalProperties": false
1229
+ },
1230
+ "hidden": false,
1231
+ "annotations": {
1232
+ "readOnlyHint": true
1233
+ }
1234
+ },
1235
+ {
1236
+ "name": "hubspot-get-workflow",
1237
+ "description": "Retrieve a HubSpot workflow by id.",
1238
+ "inputSchema": {
1239
+ "type": "object",
1240
+ "properties": {
1241
+ "flowId": {
1242
+ "type": "string"
1243
+ }
1244
+ },
1245
+ "required": [
1246
+ "flowId"
1247
+ ],
1248
+ "additionalProperties": false
1249
+ },
1250
+ "hidden": false,
1251
+ "annotations": {
1252
+ "readOnlyHint": true
1253
+ }
1254
+ },
1255
+ {
1256
+ "name": "post_crm_v3_objects_deals_batch_update_update",
1257
+ "description": "Update multiple HubSpot CRM objects in one call.",
1258
+ "inputSchema": {
1259
+ "type": "object",
1260
+ "properties": {},
1261
+ "additionalProperties": false
1262
+ },
1263
+ "hidden": false
1264
+ },
1265
+ {
1266
+ "name": "get_crm_v3_objects_tickets_ticket_id__get_by_id",
1267
+ "description": "Retrieve a CRM object by object type and id.",
1268
+ "inputSchema": {
1269
+ "type": "object",
1270
+ "properties": {},
1271
+ "additionalProperties": false
1272
+ },
1273
+ "hidden": false
1274
+ },
1275
+ {
1276
+ "name": "get_crm_v3_objects_line_items_line_item_id__get_by_id",
1277
+ "description": "Retrieve a CRM object by object type and id.",
1278
+ "inputSchema": {
1279
+ "type": "object",
1280
+ "properties": {},
1281
+ "additionalProperties": false
1282
+ },
1283
+ "hidden": false
1284
+ },
1285
+ {
1286
+ "name": "get_crm_v3_objects_products_productid_getbyid",
1287
+ "description": "Retrieve a CRM object by object type and id.",
1288
+ "inputSchema": {
1289
+ "type": "object",
1290
+ "properties": {},
1291
+ "additionalProperties": false
1292
+ },
1293
+ "hidden": false
1294
+ },
1295
+ {
1296
+ "name": "patch_crm_v3_objects_products_product_id__update",
1297
+ "description": "Update HubSpot CRM product properties.",
1298
+ "inputSchema": {
1299
+ "type": "object",
1300
+ "properties": {},
1301
+ "additionalProperties": false
1302
+ },
1303
+ "hidden": false
1304
+ },
1305
+ {
1306
+ "name": "patch_crm_v3_objects_products_productid_update",
1307
+ "description": "Update HubSpot CRM product properties.",
1308
+ "inputSchema": {
1309
+ "type": "object",
1310
+ "properties": {},
1311
+ "additionalProperties": false
1312
+ },
1313
+ "hidden": false
1314
+ },
1315
+ {
1316
+ "name": "delete_crm_v3_objects_products_product_id__archive",
1317
+ "description": "Archive a HubSpot CRM product.",
1318
+ "inputSchema": {
1319
+ "type": "object",
1320
+ "properties": {},
1321
+ "additionalProperties": false
1322
+ },
1323
+ "hidden": false
1324
+ },
1325
+ {
1326
+ "name": "delete_crm_v3_objects_products_productid_archive",
1327
+ "description": "Archive a HubSpot CRM product.",
1328
+ "inputSchema": {
1329
+ "type": "object",
1330
+ "properties": {},
1331
+ "additionalProperties": false
1332
+ },
1333
+ "hidden": false
1334
+ },
1335
+ {
1336
+ "name": "post_crm_v3_objects_line_items_batch_archive_archive",
1337
+ "description": "Batch-archive HubSpot CRM objects through the official MCP object primitive.",
1338
+ "inputSchema": {
1339
+ "type": "object",
1340
+ "properties": {},
1341
+ "additionalProperties": false
1342
+ },
1343
+ "hidden": false
1344
+ },
1345
+ {
1346
+ "name": "post_crm_v4_associations_from_object_type_to_object_type_batch_associate_default_create_default",
1347
+ "description": "Create default HubSpot contact-company associations in batch.",
1348
+ "inputSchema": {
1349
+ "type": "object",
1350
+ "properties": {},
1351
+ "additionalProperties": false
1352
+ },
1353
+ "hidden": false
1354
+ },
1355
+ {
1356
+ "name": "post_crm_v4_associations_from_object_type_to_object_type_batch_create_create",
1357
+ "description": "Create HubSpot CRM associations in batch.",
1358
+ "inputSchema": {
1359
+ "type": "object",
1360
+ "properties": {},
1361
+ "additionalProperties": false
1362
+ },
1363
+ "hidden": false
1364
+ },
1365
+ {
1366
+ "name": "post_crm_v4_associations_from_object_type_to_object_type_batch_labels_archive_archive_labels",
1367
+ "description": "Archive association labels in batch.",
1368
+ "inputSchema": {
1369
+ "type": "object",
1370
+ "properties": {},
1371
+ "additionalProperties": false
1372
+ },
1373
+ "hidden": false
1374
+ },
1375
+ {
1376
+ "name": "put_crm_v4_associations_from_object_type_to_object_type_labels_update",
1377
+ "description": "Update association labels.",
1378
+ "inputSchema": {
1379
+ "type": "object",
1380
+ "properties": {},
1381
+ "additionalProperties": false
1382
+ },
1383
+ "hidden": false
1384
+ },
1385
+ {
1386
+ "name": "delete_crm_v4_associations_from_object_type_to_object_type_labels_association_type_id__remove",
1387
+ "description": "Remove an association label.",
1388
+ "inputSchema": {
1389
+ "type": "object",
1390
+ "properties": {},
1391
+ "additionalProperties": false
1392
+ },
1393
+ "hidden": false
1394
+ },
1395
+ {
1396
+ "name": "post_crm_v4_associations_definitions_configurations_from_object_type_to_object_type_batch_purge",
1397
+ "description": "Purge association definition configurations in batch.",
1398
+ "inputSchema": {
1399
+ "type": "object",
1400
+ "properties": {},
1401
+ "additionalProperties": false
1402
+ },
1403
+ "hidden": false
1404
+ }
1405
+ ]
1406
+ }