-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtools.json
More file actions
1206 lines (1206 loc) · 36.8 KB
/
Copy pathtools.json
File metadata and controls
1206 lines (1206 loc) · 36.8 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
{
"version": "2.0.0",
"tools": [
{
"name": "linkedin_get_status",
"action": "status.get",
"description": "Check that the Chrome extension is connected and the user is logged in to LinkedIn. Call this first in any session and again after a rate-limit error; returns extension version, autopilot on/off, business-hours flag, per-quota usage (invite, message, visit, search), pending approval-queue size and campaign counts.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"verify": {
"type": "boolean"
},
"postUrl": {
"type": "string"
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_endpoints_check",
"action": "status.get",
"description": "Self-test every LinkedIn endpoint the extension uses; run this first when a tool returns LINKEDIN_ERROR. One read-only call per endpoint reports ok, failed, unverified or skipped, plus the LinkedIn client version the endpoint table was captured against, so you can tell \"LinkedIn moved\" from \"the toolkit is broken\". The search and profile reads it makes count against the normal daily caps.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"postUrl": {
"type": "string"
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_search_people",
"action": "search.people",
"description": "Search LinkedIn people and return structured profiles. Use it to build a candidate or prospect list from keywords plus optional title, company and location filters. Returns up to 100 profiles per call with nextStart for paging; the extension caps search results at 1,000 per day.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"keywords": {
"type": "string"
},
"title": {
"type": "string"
},
"company": {
"type": "string"
},
"location": {
"type": "string"
},
"source": {
"type": "string",
"enum": [
"search",
"salesnav",
"recruiter"
]
},
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"keywords"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_profile",
"action": "profile.get",
"description": "Fetch one profile by URL or publicId. Use it before writing an invite or message so the copy can reference real detail. Returns the Profile; with full=true it also captures the rendered page text, photo and experience/education, which costs one profile visit against the 500/day cap.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"publicId": {
"type": "string"
},
"full": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_export_profiles",
"action": "profile.export",
"description": "Fetch many profiles in one call from a list of LinkedIn URLs. Use it to hydrate a list you already have URLs for. Returns profiles plus a failed array of {url, error}; each profile counts against the 500 visits/day cap, so keep batches modest.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string"
}
},
"full": {
"type": "boolean"
}
},
"required": [
"urls"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_company",
"action": "company.get",
"description": "Fetch a company page by URL or universalName. Use it for account research before outreach. Returns name, industry, size, HQ, website, description and follower count.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"universalName": {
"type": "string"
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_get_company_employees",
"action": "company.employees",
"description": "List people who work at a company, by universalName. Use it for account-based sourcing once you know the company. Returns a page of profiles plus nextStart; results count against the daily search cap.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"universalName": {
"type": "string"
},
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1
}
},
"required": [
"universalName"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_post_engagers",
"action": "post.engagers",
"description": "List the people who liked or commented on a LinkedIn post. Use it to source warm leads who have shown intent. Returns engagers (a profile plus reaction or comment text) and nextStart.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"postUrl": {
"type": "string"
},
"kind": {
"type": "string",
"enum": [
"likes",
"comments",
"both"
]
},
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1
}
},
"required": [
"postUrl",
"kind"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_group_members",
"action": "group.members",
"description": "List members of a LinkedIn group you belong to. Use it for niche sourcing. Returns a page of profiles plus nextStart.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"groupUrl": {
"type": "string"
},
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1
}
},
"required": [
"groupUrl"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_event_attendees",
"action": "event.attendees",
"description": "List attendees of a LinkedIn event you can see. Use it to source people around a conference or webinar. Returns a page of profiles plus nextStart.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"eventUrl": {
"type": "string"
},
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1
}
},
"required": [
"eventUrl"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_connections",
"action": "network.connections",
"description": "List the user's own first-degree connections. Use it to work an existing network rather than sending new invites. Returns a page of profiles plus nextStart.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_get_connection_status",
"action": "network.status",
"description": "Check whether the user is already connected to, or has a pending invite with, each of the given publicIds. Always call this before sending invites so you do not re-invite existing connections. Returns a map publicId to connected | pending | none.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"publicIds": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"publicIds"
],
"additionalProperties": false
}
},
{
"name": "linkedin_get_conversations",
"action": "inbox.threads",
"description": "List LinkedIn inbox threads, optionally only those since a timestamp or only unread. Use it to triage replies. Returns threads with participants, snippet, unread flag and sentiment when the extension has an AI provider configured.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"since": {
"type": "number"
},
"unreadOnly": {
"type": "boolean"
},
"count": {
"type": "integer",
"minimum": 1
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_get_messages",
"action": "inbox.messages",
"description": "Fetch the messages in one thread by threadId. Use it after linkedin_get_conversations to read the full exchange before replying. Returns messages with sender publicId, body and sentAt.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"threadId": {
"type": "string"
},
"since": {
"type": "number"
}
},
"required": [
"threadId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_list_create",
"action": "list.create",
"description": "Create a named local list to hold prospects. Use it as the container for search results before enrolling them in a campaign. Returns the List with its listId. Lists live only in the local extension storage.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"name"
],
"additionalProperties": false
}
},
{
"name": "linkedin_list_get",
"action": "list.get",
"description": "Fetch one list by listId. Use it to confirm a list exists and how many members it holds. Returns the List record.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"listId": {
"type": "string"
}
},
"required": [
"listId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_list_all",
"action": "list.getAll",
"description": "List every local list. Use it to discover listIds before adding members or creating a campaign. Returns all List records with their member counts.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
},
{
"name": "linkedin_list_add",
"action": "list.add",
"description": "Add profiles (or bare publicIds) to a list. Use it to save search or engager results for later outreach. Duplicates are skipped; returns {added, duplicates}.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"listId": {
"type": "string"
},
"profiles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"publicId": {
"type": "string"
},
"urn": {
"type": "string"
},
"url": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"fullName": {
"type": "string"
},
"headline": {
"type": "string"
},
"title": {
"type": "string"
},
"company": {
"type": "string"
},
"companyUrn": {
"type": "string"
},
"location": {
"type": "string"
},
"industry": {
"type": "string"
},
"photoUrl": {
"type": "string"
},
"photoDataUrl": {
"type": "string"
},
"pageText": {
"type": "string"
},
"skills": {
"type": "array",
"items": {
"type": "string"
}
},
"connectionDegree": {
"type": "number",
"enum": [
1,
2,
3
]
},
"experience": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"company": {
"type": "string"
},
"start": {
"type": "string"
},
"end": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"title",
"company"
],
"additionalProperties": false
}
},
"education": {
"type": "array",
"items": {
"type": "object",
"properties": {
"school": {
"type": "string"
},
"degree": {
"type": "string"
},
"field": {
"type": "string"
},
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"school"
],
"additionalProperties": false
}
},
"capturedAt": {
"type": "number"
},
"source": {
"type": "string"
}
},
"required": [
"publicId",
"url",
"firstName",
"lastName",
"fullName",
"capturedAt"
],
"additionalProperties": true
}
},
"publicIds": {
"type": "array",
"items": {
"type": "string"
}
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"listId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_list_members",
"action": "list.members",
"description": "Page through the members of a list. Use it to read back what is in a list, including tags, whether each person was contacted before and any signals. Returns members plus total.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"listId": {
"type": "string"
},
"start": {
"type": "integer",
"minimum": 0
},
"count": {
"type": "integer",
"minimum": 1
}
},
"required": [
"listId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_view_profile",
"action": "outreach.view",
"description": "Visit a profile so the visit shows up in their \"who viewed your profile\". Use it as a light warm-up touch before an invite. This is a direct, metered action: it is paced and drawn from the visit bucket (500 visits/day) but never queued for approval, so the result status is \"sent\". Pass dry_run to preview.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"publicId": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"publicId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_follow",
"action": "outreach.follow",
"description": "Follow a person without sending a connection invite. Use it when an invite would be too strong a first touch. This is a direct, metered action: it is paced and drawn from the visit bucket but never queued for approval, so the result status is \"sent\". Pass dry_run to preview.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"publicId": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"publicId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_send_invite",
"action": "outreach.invite",
"description": "Send a connection invite, optionally with a note of at most 200 characters (LinkedIn's own limit; a longer note is refused with INVALID_PARAMS, so aim for 180 or fewer). Check linkedin_get_connection_status first. Hard cap 100 invites/day; in Copilot mode (the default) the invite is queued for human approval and the result status is \"queued\" rather than \"sent\". Note that on a free account LinkedIn allows only a few personalised (with-note) invitations a month, so prefer a note where it will count. Pass dry_run to preview the exact payload.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"publicId": {
"type": "string"
},
"note": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"publicId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_send_message",
"action": "outreach.message",
"description": "Send a direct message to a first-degree connection. Hard cap 150 messages/day; in Copilot mode it is queued for approval. Returns a WriteResult; pass dry_run to preview.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"publicId": {
"type": "string"
},
"body": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"publicId",
"body"
],
"additionalProperties": false
}
},
{
"name": "linkedin_send_inmail",
"action": "outreach.inmail",
"description": "Send an InMail with a subject line (requires Premium, Sales Navigator or Recruiter). Counts against the message cap and queues for approval in Copilot mode. Returns a WriteResult; pass dry_run to preview.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"publicId": {
"type": "string"
},
"subject": {
"type": "string"
},
"body": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"publicId",
"subject",
"body"
],
"additionalProperties": false
}
},
{
"name": "linkedin_like_post",
"action": "outreach.like",
"description": "Like a post by URL. Use it as a low-risk warm-up touch before inviting the author. This is a direct, metered action: it is paced and drawn from the visit bucket but never queued for approval, so the result status is \"sent\". Unlike a comment, a like carries no words of yours. Pass dry_run to preview.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"postUrl": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"postUrl"
],
"additionalProperties": false
}
},
{
"name": "linkedin_comment_post",
"action": "outreach.comment",
"description": "Comment on a post by URL. Use it for public engagement before outreach; comments are queued for approval in Copilot mode because they are visible to everyone. Returns a WriteResult; pass dry_run to preview.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"postUrl": {
"type": "string"
},
"body": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"postUrl",
"body"
],
"additionalProperties": false
}
},
{
"name": "linkedin_campaign_create",
"action": "campaign.create",
"description": "Create a multi-step outreach sequence (view, follow, invite, message, inmail, like, comment, wait, branch) over a list or explicit publicIds. Use it instead of firing individual writes when the touches should be spaced over days. Returns the Campaign; steps still obey every quota and the approval queue.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"steps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"view",
"follow",
"invite",
"message",
"inmail",
"like",
"comment",
"wait",
"branch"
]
},
"note": {
"type": "string"
},
"body": {
"type": "string"
},
"subject": {
"type": "string"
},
"variants": {
"type": "array",
"items": {
"type": "string"
}
},
"waitMs": {
"type": "number"
},
"branch": {
"type": "object",
"properties": {
"on": {
"type": "string",
"enum": [
"accepted",
"replied",
"notAcceptedAfterMs"
]
},
"ms": {
"type": "number"
},
"then": {
"type": "array",
"items": {}
},
"else": {
"type": "array",
"items": {}
}
},
"required": [
"on",
"then",
"else"
],
"additionalProperties": false
}
},
"required": [
"type"
],
"additionalProperties": true
}
},
"listId": {
"type": "string"
},
"publicIds": {
"type": "array",
"items": {
"type": "string"
}
},
"settings": {
"type": "object",
"properties": {
"stopOnReply": {
"type": "boolean"
},
"autopilot": {
"type": "boolean"
}
},
"additionalProperties": true
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"name",
"steps"
],
"additionalProperties": false
}
},
{
"name": "linkedin_campaign_get",
"action": "campaign.get",
"description": "Fetch one campaign by campaignId including its stats. Use it to report on enrolled, sent, accepted, replied and positive counts per step.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"campaignId": {
"type": "string"
}
},
"required": [
"campaignId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_campaign_list",
"action": "campaign.getAll",
"description": "List every campaign with its status. Use it to find campaignIds and see what is currently running or paused.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
},
{
"name": "linkedin_campaign_enroll",
"action": "campaign.enroll",
"description": "Enroll publicIds into an existing campaign. Use it to top up a running sequence with newly sourced people. Already-enrolled people are skipped; returns {enrolled, skipped}.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"campaignId": {
"type": "string"
},
"publicIds": {
"type": "array",
"items": {
"type": "string"
}
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"campaignId",
"publicIds"
],
"additionalProperties": false
}
},
{
"name": "linkedin_campaign_pause",
"action": "campaign.pause",
"description": "Pause a campaign so no further steps execute. Use it immediately if replies look negative or a challenge was detected. Returns the updated Campaign.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"campaignId": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"campaignId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_campaign_resume",
"action": "campaign.resume",
"description": "Resume a paused campaign from where it stopped. Returns the updated Campaign.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"campaignId": {
"type": "string"
},
"dry_run": {
"type": "boolean"
}
},
"required": [
"campaignId"
],
"additionalProperties": false
}
},
{
"name": "linkedin_queue_list",
"action": "queue.list",
"description": "List items in the human-approval queue, optionally filtered by status (\"pending\", \"approved\", \"rejected\", \"sent\" or \"failed\"). In Copilot mode every agent-originated write lands here first, so call this to show the user what is waiting, and poll it after linkedin_queue_approve to see what actually sent. Returns queue items with their action, params and target profile; a failed item carries result.error.",
"write": false,
"inputSchema": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"pending",
"approved",
"rejected",
"sent",
"failed"
]
}
},
"additionalProperties": false
}
},
{
"name": "linkedin_queue_approve",
"action": "queue.approve",
"description": "Approve queued writes by id so the extension sends them, optionally editing the note or body first. This works only when the user has turned Autopilot on: in the default Copilot mode approval is a human action and the extension answers UNAUTHORIZED, so show the queue with linkedin_queue_list and ask the user to approve in the popup. Returns {approved} immediately — the count marked approved, not sent. The extension then sends them one at a time at human pace, which takes seconds to minutes, so watch queue_item_sent events or poll linkedin_queue_list (status \"sent\" or \"failed\") rather than assuming the writes have landed when this returns. An edited note longer than 200 characters is refused here with INVALID_PARAMS and nothing is approved.",
"write": true,
"inputSchema": {
"type": "object",
"properties": {
"ids": {
"type": "array",