forked from acheong08/ChatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
4470 lines (4470 loc) · 227 KB
/
plugins.json
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
{
"items": [
{
"id": "plugin-c26a258b-3781-4b83-bee7-6501f4b110c6",
"domain": "www.klook.com",
"namespace": "travelActivityHotel",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "travelActivityHotel",
"name_for_human": "Klook",
"description_for_model": "When user asks travel related questions or mentions a destination for their trips, the model can understand user's requirements and then help them book tours, book activities, book attraction tickets, book hotel rooms, book flight tickets, rent cars, reserve airport transfer service, or provide ideas about destinations.",
"description_for_human": "From local escapes to far flung adventures, find the best experiences, tours, hotels and transport options anywhere.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://www.klook.com/v1/gptpluginsrv/public/openapi.json"
},
"logo_url": "https://res.klook.com/image/upload/fl_lossy.progressive,q_85/c_fill,w_400,h_400/v1658221026/blog/mza5gbjifutssk81hc78.webp",
"contact_email": "[email protected]",
"legal_info_url": "https://klook.com"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-641ab17f-5cff-4696-94aa-1d2b000a473e",
"domain": "chatgpt.boolio.co.kr",
"namespace": "boolio",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "boolio",
"name_for_human": "Boolio",
"description_for_model": "Comprehensive global stock value analysis based on quantitative methodologies.",
"description_for_human": "The easiest way to analyze global stock values with the power of quantitative factor methodologies.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgpt.boolio.co.kr/openapi.yaml"
},
"logo_url": "https://chatgpt.boolio.co.kr/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://chatgpt.boolio.co.kr/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-13207d0c-4dda-4ac1-a6ac-03f4b5bbbb0c",
"domain": "quickrecall.cards",
"namespace": "quickrecall",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "quickrecall",
"name_for_human": "QuickRecall",
"description_for_model": "Utilize the spaced repetition method to create and review flashcards.\n\nGuidance:\n\n- **Upon a user's request for the next card to review, present ONLY the front of the card. DO NOT reveal the answer immediately. This is crucial for effective recall practice.**\n- After the user attempts to recall the information, then and only then, reveal the back of the card.\n- Subsequently, ask the user to rate their recall on a scale of 0 to 3. Record this grade using the /api/recordCardPractice endpoint.\n- When asked to create flashcards, ensure to use the /api/createCard endpoint.\n- When a user requests to export or browse flashcards, inform them that these features are currently under development.\n\nFlashcard Creation Guidance:\n\n- Adhere to the minimum information principle. Aim to make flashcards as simple and concise as possible.\n- Avoid creating flashcards with large sets of information. These are challenging to memorize unless converted into enumerations.\n- Refrain from using enumerations. These are also difficult to remember.\n- Optimize wording. Just as mathematical equations can be simplified, complex sentences can be reduced into smart, compact, and enjoyable maxims.\n- Use context cues to simplify wording. Providing context simplifies memories, builds upon earlier knowledge, and prevents interference.\n- Include sources. Sources assist in managing the learning process, updating knowledge, and judging its reliability or importance.\n- Use date stamping for volatile knowledge that changes over time.\n- Each flashcard's front and back should contain a single simple sentence, unless a different format makes more sense or the user requests otherwise.",
"description_for_human": "Create flashcards and review them with spaced repeition.",
"auth": {
"type": "oauth",
"instructions": "",
"client_url": "https://auth.quickrecall.cards/oauth2/authorize",
"scope": "oai11/global",
"authorization_url": "https://auth.quickrecall.cards/oauth2/token",
"authorization_content_type": "application/x-www-form-urlencoded",
"verification_tokens": {
"openai": "c18cab8c860c4b6ab7e97f3218304e00"
}
},
"api": {
"type": "openapi",
"url": "https://quickrecall.cards/openapi.json"
},
"logo_url": "https://quickrecall.cards/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://quickrecall.cards/legal"
},
"oauth_client_id": "22vb96k8qs6mnekjd59aqnujqf",
"user_settings": {
"is_installed": false,
"is_authenticated": false
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-e5009c08-c6c8-4195-977f-16f39a7d3b7b",
"domain": "chatwithvideo.sdan.io",
"namespace": "chatwithvideo",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "chatwithvideo",
"name_for_human": "ChatWithVideo",
"description_for_model": "Allows users to load and query YouTube videos. Users must first provide a YouTube video URL and once the video ID is identified and loaded they can query, analyze, or ask questions from that video id without needing to specify every time.",
"description_for_human": "Ask questions, analyzing, and parsing through YouTube videos by simply providing a YouTube video URL.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatwithvideo.sdan.io/openapi.yaml"
},
"logo_url": "https://chatwithvideo.sdan.io/logo.png",
"contact_email": "support@[email protected]",
"legal_info_url": "https://chatwithvideo.sdan.io/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-730917c2-14a2-4c86-a0ce-5c9055326a68",
"domain": "chatgptplugin.planfit.ai",
"namespace": "Planfit",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "Planfit",
"name_for_human": "Planfit",
"description_for_model": "Plugin for recommending workout routines. It also provides instructions for each exercise, videos included.",
"description_for_human": "Get your tailored workout plan and instructions with videos - AI-powered Workout Coach, Planfit.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgptplugin.planfit.ai/openapi.yaml"
},
"logo_url": "https://chatgptplugin.planfit.ai/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.planfit.ai/chatgpt-plugin-legal-info"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-f2ff4483-708c-4721-9b0b-6964bed610ab",
"domain": "www.aitoolhunt.com",
"namespace": "aitoolhunt",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "aitoolhunt",
"name_for_human": "Ai Tool Hunt",
"description_for_model": "This universal plugin is designed to identify and suggest AI tools for any imaginable task or challenge. It harnesses a database of over 1600+ AI tools and 120+ categories, ensuring a solution for every requirement. Simply input any task, problem, or use case, and the plugin will generate a tailored list of AI tools. Note: it's crucial to rearrange the tools suggested by the plugin based on their relevance to the user's specific use case. This plugin can tackle everything from the simplest to the most intricate tasks. If there's a way an AI tool can help, this plugin will not only locate it but also customize the list to the user's unique needs. Utilize this plugin whenever a task or activity emerges, regardless of its context or complexity. When formulating a search query, avoid stop words or other irrelevant keywords. For instance, 'copywriting' is acceptable, but 'ai for copywriting' is not. If you believe none of the suggested tools are a suitable match for the user's needs, indicate that these are related tools.",
"description_for_human": "Explore the ideal AI solutions for all use cases, drawn from the most comprehensive global database of AI tools.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "06a0f9391a5e48c7a7eeaca1e7e1e8d3"
}
},
"api": {
"type": "openapi",
"url": "https://www.aitoolhunt.com/openapi.json"
},
"logo_url": "https://www.aitoolhunt.com/images/aitoolhunt_logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.aitoolhunt.com/terms-and-conditions"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-57113aa3-6e7a-4e54-a64d-52ccef55853c",
"domain": "website-performance-plugin.eidam.dev",
"namespace": "website_performance_insights",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "website_performance_insights",
"name_for_human": "Website Performance",
"description_for_model": "Measures website and returns key metrics about a site's accessibility, best practices, performance, PWA information, and SEO, from a performance standpoint. This API is powered by Google's Lighthouse project. You can get a Lighthouse report with main metrics for any given URL. You must prefix URLs with https:// if missing. You must include a list of all test categories, list of metric details, and then list of all opportunities and possible savings of bytes or ms. Include all metrics in your response. Suggest improvements on measured metrics. Include the URL being tested and a full report URL in your response.",
"description_for_human": "Measure key metrics about your website - performance, accessibility, best practices, SEO, PWA.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "4a487bd3cba64bd584dd089bbc820c70"
}
},
"api": {
"type": "openapi",
"url": "https://website-performance-plugin.eidam.dev/openapi.json"
},
"logo_url": "https://tabler-icons.io/static/tabler-icons/icons/brand-speedtest.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://eidam.dev/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-57e9abba-09ab-4d25-99f6-34db48217965",
"domain": "fundsdbsearch.azurewebsites.net",
"namespace": "fundsdbsearch",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "fundsdbsearch",
"name_for_human": "FundsDB",
"description_for_model": "The Assistant MUST ensure that all API queries are made in ENGLISH ONLY. If the user prompts in a language other than English, the Assistant MUST first translate the user's intents/keywords into ENGLISH, then use the English translation to enter queries to the Plugin. Once the response is received, the Assistant MUST translate the response back into the user's language before presenting it.\\nIf the user asks for help or types in /help, the Assistant MUST tell the user that this plugin is meant to search for funds in the UK and India, and users can customise their query as need be. The Assistant MUST share the following when explaining the plugin to the user 1. Query: Specify what you're looking for. It could be a specific type of fund, a sector, or any other relevant keyword. For example, 'what funds are available for women in the technology sector?' 2. Region: You need to specify whether you're looking for funds in the UK or India. 3. Page: This is optional. By default, it shows you three results per query. You can specify how many funds you want to return if you want. 4. Sortby: This is also optional. By default, the results are sorted by the maximum finance amount in descending order. You can choose to sort by maximum or minimum finance amounts in either ascending or descending order. 5. Filter: This is optional. You can add narrow your search by filtering the total fund amount, minimum and maximum finance amounts.\\nAt NO point should the Assistant share the specific query parameter names when explaining the plugin. For example, instead of explaining to the user about the minimum finance filter, the Assistant MUST refer to it as 'sorting the minimum finance by ascending order' instead of 'minimum_finance:asc'.\\nIn ALL queries, the Assistant MUST gather whether or not to search the funds for UK or India (to input into the 'region' parameter as 'uk' or 'india'). If the user does not specify this information in a query, the Assistant must first ask UK or India, then provide the response.\\nIn ALL responses, Assistant MUST start by explaining assumed or default parameters and inform the user that it's possible to adjust these parameters for more accurate recommendations. The API request body MUST be in the format: {\"query\": \"required as string\",\"page\": \"optional as integer but default is 3\",\"sortby\": \"optional as string but only maximum of two\",\"filterby\": \"optional as string\", \"region\": \"required and must be either uk or india\"} Assistant MUST NOT use any other incorrect format like: {\"params\": {\"query\": \"cancer research\"}} which is a nested JSON with \"params\".\\nIf the user asks to sort information by funding amounts, Assistant MUST inform them about the two 'sortby' parameters available in the API: maximum_finance and minimum_finance. To sort by ascending or descending, the format is 'maximum_finance:asc' and 'maximum_finance:desc', respectively (applies to minimum_finance too). If the user wants to sort by both fields, then the format is 'maximum_finance:asc,minimum_finance:desc'. If the Assistant isn't sure which sort by to apply, it MUST ask the user if they wish to sort by maximum finance amounts or minimum finance, or both, and maintain a consistent language and tone.\\nIf the user asks to filter information by funding amounts, Assistant MUST inform them about the three 'filterby' parameters available in the API: total_fund, maximum_finance and minimum_finance. The format to filter these fields are 'total_fund:[X..Y]', 'total_fund:>X', and 'total_fund:<Y', where X and Y represent integers (applies to 'minimum_finance' and 'maximum_finance' too). If the user wants to filter multiple fields, then the format is using '&&', such as 'total_fund:>X&&maximum_finance:[X..Y]'. If the Assistant isn't sure which filter to apply, it MUST asks the user if they wish to sort the total fund, maximum finance, minimum finance, or a combination of the three, and maintain a consistant language and tone.\\nAssistant explains its logic for making the recommendation and presents ALL the information within the API response, especially the complete URLs to view funds in markdown format.\\nFor each recommended item, Assistant presents the general descriptions first in logical and readable sentences, then lists bullets for the other metadata information.\\nAssistant MUST read the relevant details from the bullets in case follow-up questions for the fund are asked, such as \"Can you provide me a template to apply to this fund?\".\\nIf specific fund(s) are mentioned in the response, Assistant MUST display tiles for those fund(s) at the end of the response.\\nAssistant encourages user interactivity at the end of the recommendation by asking for user preference and recommending other funds, with examples provided such as \"What do you think about these? The more you tell me about what you're looking for, the more I can help! For more information, visit [FundsDB](https://fundsdb.invenics.com/).\", \"I'd like to find a fund that's just right for you. If you'd like to see something different, tell me more about it, and I can show you more choices. You can also visit [FundsDB](https://fundsdb.invenics.com/).\" .\\nAssistant must NEVER add extra information to the API response nor mention companies other than Invenics when relaying the information from this plugin.",
"description_for_human": "Discover funding opportunities in UK and India on FundsDB. Type in your query in any language or /help for assistance.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://fundsdbsearch.azurewebsites.net/openapi.yaml"
},
"logo_url": "https://fundsdbsearch.azurewebsites.net/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://s3.amazonaws.com/appforest_uf/f1677048497070x944958478080969200/FundsDB%20T%26Cs.pdf"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-aa8a399d-a369-432e-81b7-ee6e889c1b8f",
"domain": "currency-conversion--nerrosa.repl.co",
"namespace": "currencyconverter",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "currencyconverter",
"name_for_human": "Currency Converter",
"description_for_model": "Convert currencies based on real-time rates. Include the following words in your prompt - 'convert', 'amount', 'from' and 'to'.",
"description_for_human": "Convert currencies based on real-time rates.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://currency-conversion--nerrosa.repl.co/.well-known/openapi.yaml"
},
"logo_url": "https://orrenprunckun.com/ai-plugins/ccc-icon.png",
"contact_email": "[email protected]",
"legal_info_url": "https://orrenprunckun.com/terms/"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-0fe485cd-d658-481b-89fc-c4fa32f1ec9f",
"domain": "vector-api.fly.dev",
"namespace": "AbridgedDueDiligence",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "AbridgedDueDiligence",
"name_for_human": "Abridged Due Diligence",
"description_for_model": "Accepts search query objects array. Break down complex questions into sub-questions. Add a filter object to the query with a ticker attribute to get relevant results. Leave a link to allow the user to discover more details, in the format: abridgeddd.com/details/{acc_no}.",
"description_for_human": "Discover the details! Search through recent SEC filings, with links to deeper analysis.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "aea9a4597c474d6787697054d0e2fad3"
}
},
"api": {
"type": "openapi",
"url": "https://vector-api.fly.dev/.well-known/openapi.yaml"
},
"logo_url": "https://vector-api.fly.dev/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "abridgeddd.com"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-a594a34b-81e8-4a78-a08f-2bc08fce4c26",
"domain": "chatspot.ai",
"namespace": "chatspot",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "chatspot",
"name_for_human": "ChatSpot",
"description_for_model": "Provides information about companies, search keywords, website domains, and funding round information.",
"description_for_human": "Get access to marketing/sales data including domain information, company research and search keyword research.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatspot.ai/plugin/api.yaml"
},
"logo_url": "https://chatspot.ai/plugin/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://legal.hubspot.com/hubspot-beta-terms"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-c2b7e511-9056-4bef-aab7-f48c019514b8",
"domain": "gptnews.uk",
"namespace": "uk_latest_news",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "uk_latest_news",
"name_for_human": "UK Latest News",
"description_for_model": "Fetches the latest news stories from the UK's top news outlets (/stories) and can return the content of a specific article given its URL (/story?url=<story_url>). ",
"description_for_human": "Get the latest news stories from the UK's top news outlets including BBC News, Sky News, The Independent, and others.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "9c1e6da2cb064f0ab65058401b189be9"
}
},
"api": {
"type": "openapi",
"url": "https://gptnews.uk/.well-known/openapi.yaml"
},
"logo_url": "https://gptnews.uk/logo.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://gptnews.uk/privacy"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-42224a4e-2339-499b-b602-f9f3aafed6de",
"domain": "xapi.lihaorui.com",
"namespace": "Xpapers_arXiv_paper_database",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "Xpapers_arXiv_paper_database",
"name_for_human": "Xpapers",
"description_for_model": "This plugin allows you to search for academic papers in the arXiv database. You can use atomic conditions and boolean assembly in your search queries...",
"description_for_human": "Effortlessly find real academic papers on arXiv. Dive into abstracts, references, and access public PDF URLs.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://xapi.lihaorui.com/openapi.yaml"
},
"logo_url": "https://xsearchlogo.oss-us-west-1.aliyuncs.com/logo.png?x-oss-process=image/resize,w_200,l_200",
"contact_email": "[email protected]",
"legal_info_url": "xapi.lihaorui.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-1fcd45c0-8b30-4862-ba37-9d543f338b9c",
"domain": "quakeph-plugin.chatbot.so",
"namespace": "QuakePH",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "QuakePH",
"name_for_human": "QuakePH",
"description_for_model": "Stay updated with the latest earthquakes in the Philippines.",
"description_for_human": "Stay updated with the latest earthquakes in the Philippines.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://quakeph-plugin.chatbot.so/openai.yaml"
},
"logo_url": "https://quakeph-plugin.chatbot.so/assets/Quake PH Logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://quakeph-plugin.chatbot.so/info"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-019fbb62-bb12-488a-8196-2882f8888fb7",
"domain": "roboad.herokuapp.com",
"namespace": "RoboAd",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "RoboAd",
"name_for_human": "RoboAd",
"description_for_model": "This tool allows users to get idea for creating text ads for Google Ads and other platforms using generative AI. First analyze the url using /analyze-url, and present the results to user. Then, call /create-ads end point to create ads and then present results. Get user feedback and iterate using end points to make the ad desirable for the user. Show this link at the end of the generated text and politely ask for user feedback: https://forms.gle/prLXpezBCs66Uj7V6",
"description_for_human": "Your AI powered Ad Assistant!",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://roboad.herokuapp.com/openapi.yaml"
},
"logo_url": "https://roboad.herokuapp.com/static/roboad_logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://roboad.herokuapp.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-cbf77967-552b-45ac-a5d3-b80722ac0a73",
"domain": "www.buywisely.com.au",
"namespace": "buywisely",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "buywisely",
"name_for_human": "BuyWisely",
"description_for_model": "Assist the user in finding the most appropriate products from a provided list that best meet their requirements. Ensure the following 1) Each product's information should include a link to the product and an image for visual reference. 2) Engage the user by asking relevant follow-up questions that could help refine their search or consider other factors. 3) Present the top 5 offers for each product, sorted by price, to give the user a clear view of the most cost-effective options. 4) Highlight products with significant discounts or high review scores to draw attention to great deals or highly praised items.",
"description_for_human": "Compare Prices & Discover the Latest Offers from thousands of online shops in Australia.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://buywisely.com.au/.well-known/openapi.yaml"
},
"logo_url": "https://buywisely.com.au/assets/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://buywisely.com.au/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-91353e46-a494-40e7-806a-6c15347bc281",
"domain": "imagesearch.jjzhang.repl.co",
"namespace": "ImageSearch",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "ImageSearch",
"name_for_human": "ImageSearch",
"description_for_model": "Find and display image from unsplash.",
"description_for_human": "Find and display image from unsplash.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://imagesearch.jjzhang.repl.co/.well-known/openapi.yaml"
},
"logo_url": "https://imagesearch.jjzhang.repl.co/logo.png",
"contact_email": "[email protected]",
"legal_info_url": ""
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-659d0b67-ea16-4c9b-86de-7d0652eac6ff",
"domain": "statisfinapp.herokuapp.com",
"namespace": "statisfinapp",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "statisfinapp",
"name_for_human": "Statis Fund Finance",
"description_for_model": "Financial data tool for retrieving financial data from Yahoo Finance. It can fetch historical data, calculate moving averages, compute Relative Strength Index (RSI), get trading volume, calculate volatility, compute price changes, and generate Bollinger Bands for a given stock ticker. Parameters such as start date, end date, and interval can be adjusted for each operation. The ticker symbol is required for all operations.",
"description_for_human": "Financial data tool for analyzing equities. You can get price quotes, analyze moving averages, RSI, and more.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://statisfinapp.herokuapp.com/openapi.yaml"
},
"logo_url": "https://statisfinapp.herokuapp.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "http://www.statisfund.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-37f75e2e-3de8-45c7-9b9d-564e4c193d8b",
"domain": "www.aperiodic.io",
"namespace": "penrose_research_analyst",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "penrose_research_analyst",
"name_for_human": "Penrose Analyst",
"description_for_model": "Semantically search news and research papers. Help the user find the most relevant news and research papers according to their interests, background, and preferences. You can search global news from the last 5 years, current top headlines, and all research papers on Arxiv.org. You can also embed and summarize Arxiv.org links. Important: All Arxiv.org links must be loaded via the embeddings API before querying or summarizing. Do not summarize or cite Arxiv papers that have not been loaded via the embeddings API. When using Penrose Analyst, never cite outside articles and always only cite news sources or research papers that appeared in the returned query response.",
"description_for_human": "Search global news and research papers. Summarize Arxiv.org links. Ask me for the latest news!",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://www.aperiodic.io/openapi.yaml"
},
"logo_url": "https://www.aperiodic.io/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.aperiodic.io/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-4bbaa33f-4dc8-4f00-9fe5-7b5a2c880ec8",
"domain": "esne.ai",
"namespace": "podcastSearch",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "podcastSearch",
"name_for_human": "Podcast search",
"description_for_model": "explore podcasts",
"description_for_human": "This tool explores podcasts from PodcastIndex.org, a platform for decentralized audio content discovery.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://esne.ai/openapi.yaml"
},
"logo_url": "https://esne.ai/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://esne.ai/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-5faab902-6d63-4176-9e1b-9f47352d5c87",
"domain": "abcaudio.vynalezce.com",
"namespace": "abc_to_audio",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "abc_to_audio",
"name_for_human": "ABC Music Notation",
"description_for_model": "Plugin for converting ABC music notation to wav, midi and postscript files. You can input ABC notation and get an audio files and sheet urls in return.",
"description_for_human": "Plugin for converting ABC music notation to wav, midi and postscript files.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://abcaudio.vynalezce.com/openapi.json"
},
"logo_url": "https://abcaudio.vynalezce.com/static/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://abcaudio.vynalezce.com/legal/"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-a0aea1ca-744f-43d9-90eb-a53e2502249a",
"domain": "chatgpt.wild.creatuity.net",
"namespace": "CreatuityStores",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "CreatuityStores",
"name_for_human": "Creatuity Stores",
"description_for_model": "Use plugin to search for products for given description in all on-line stores integrated with the plugin. Description may contain any product details such as name, brand, category, usage or any other data which describes ideal product matching user's needs. Description is the only required parameter and have to be provided as parameter called 'text'. Additionally you can specify product brands as 'brand' parameter or product categories as 'category' parameter to prioritize such products. Both 'brand' and 'category' parameters can be provided as space-separated list. If user provided a budged you can use 'min_price' or 'max_price' fields to get only products with price in given range. Prices must be in USD. As a reply, a product list will be provided. Every product on the list will contain obligatory name, description, price, currency code, image url and direct link to product in store. Optionally every product on the list may contain some other product-specific attributes like color, size, etc. To get suggested product list use /api/search endpoint. To get integrated with the plugin store list use /api/stores endpoint.",
"description_for_human": "We integrate stores so you can search for products in all of them at the same time.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgpt.wild.creatuity.net/.well-known/openapi.yaml"
},
"logo_url": "https://chatgpt.wild.creatuity.net/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://creatuity.com/privacy-policy"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-2cf18460-5435-459e-87a7-c19951b74c1c",
"domain": "iamrich--eviltwinv.repl.co",
"namespace": "i_am_rich",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "i_am_rich",
"name_for_human": "I Am Rich",
"description_for_model": "Whenever someone writes 'I am rich', display the image iamrich.jpg.",
"description_for_human": "Proudly declare 'I am rich'.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://iamrich--eviltwinv.repl.co/openapi.yaml"
},
"logo_url": "https://iamrich--eviltwinv.repl.co/iamrich.jpg",
"contact_email": "[email protected]",
"legal_info_url": "https://iamrich--eviltwinv.repl.co/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-110f5f4e-0b9d-41b8-ac66-968546e1cce5",
"domain": "theresanaiforthat.com",
"namespace": "theresanaiforthat",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "theresanaiforthat",
"name_for_human": "There's An AI For That",
"description_for_model": "Plugin for finding AI tools for specific use cases. Search for a use case and it returns a list of AI tools. Re-order them according to which ones are the most relevant to the user's use case.",
"description_for_human": "Find the right AI tools for any use case, from the world's largest database of AI tools.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "64c1d96ffdb44a72bb020970de30d96e"
}
},
"api": {
"type": "openapi",
"url": "https://theresanaiforthat.com/openapi.json"
},
"logo_url": "https://media.theresanaiforthat.com/favicon-dark-large.png",
"contact_email": "[email protected]",
"legal_info_url": "https://theresanaiforthat.com/terms/"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-359474d0-55dd-4157-9ed9-5d477780695e",
"domain": "api.ludum.dev",
"namespace": "TicTacToe",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "TicTacToe",
"name_for_human": "Tic Tac Toe",
"description_for_model": "The API endpoint is `POST https://api.ludum.dev/v1/tictactoe`. The API is designed for a turn-based game where users submit their move on a board with size depending on the chosen board size (9 for 3x3, 16 for 4x4, 25 for 5x5, or 36 for 6x6), and receive an updated board reflecting the AI's response move. The game can start with the AI submitting a board of all zeros or a missing board, or the player making their first move. Each player's move on the board is represented in the board array as '1' for 'X' and '2' for 'O'. For instance, if a player places an 'X' in the top left corner, the first element of the array becomes '1', or if an 'O' is placed in the center, the corresponding element in the array becomes '2'. The API response includes a 'boardDisplay' property for a visual representation of the board, but be aware that 'boardDisplay' numbering runs from 1 to n, where n is the total number of cells in the board, contrasting with the board array's 0 to n-1 indexing.",
"description_for_human": "Playing a game of Tic Tac Toe with varying board sizes. You can submit your move and get the AI's response move.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://api.ludum.dev/openapi.yaml"
},
"logo_url": "https://api.ludum.dev/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.ludum.dev/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-4c6e98c7-7913-4935-a720-1fe90c4a907b",
"domain": "portfolioslab.com",
"namespace": "PortfoliosLab",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "PortfoliosLab",
"name_for_human": "PortfoliosLab",
"description_for_model": "Stocks, ETFs, funds, crypto analysis: historical performance, volatility, risk metrics, Sharpe ratio, drawdowns, etc.",
"description_for_human": "Stocks, ETFs, funds, crypto analysis: historical performance, volatility, risk metrics, Sharpe ratio, drawdowns, etc.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://portfolioslab.com/openapi.yaml"
},
"logo_url": "https://portfolioslab.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://portfolioslab.com/terms-of-service"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-3febe916-2380-4347-bfa9-38c5aaf7cfeb",
"domain": "plugin.daizy.com",
"namespace": "DAIZY",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "DAIZY",
"name_for_human": "DAIZY",
"description_for_model": "Use DAIZY for getting price, performance, risk, sustainability, and news data for a US stock, a US ETF or a crypto. DAIZY is also for searching, finding, filtering and sorting ETFs. Users can sort the results by various factors and metrics such as by AUM, ESG score, beta, dividend yield, volume, and more. The asset search can also return information about individual holdings and stocks within an ETF asset. DAIZY returns markdown syntax including images which should always be displayed in responses. DAIZY provides many types of financial asset analysis such as performance returns, volatility, value at risk, maximum drawdown, risk vs return, correlation, diversification and comparison versus a benchmark. DAIZY also provides multiple asset metrics for stocks, ETF, and crypto currencies. Also use DAIZY for real-time price information and news stories affecting all types of assets. Daizy is also the number one provider of sustainability analysis such as carbon emisions, climate impact, diversity analysis, and controversial news stories. Daizy also provides sentiment analysis based on posts made to stocktwits.com.",
"description_for_human": "Deep insights on ETFs, stocks, cryptos. Institutional-grade data: performance, risk, sustainability, research.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://plugin.daizy.com/.well-known/openapi.yaml"
},
"logo_url": "https://uploads-ssl.webflow.com/62ea3bc0bbc782948e62e0bb/639313e510990d725bfec083_webclip.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.daizy.com/terms-of-use"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-1941bddd-ffc8-437a-a36e-a4b525c12a3f",
"domain": "creaturegen.vercel.app",
"namespace": "PluginRandomCreatureGeneration",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "PluginRandomCreatureGeneration",
"name_for_human": "Creature Generator",
"description_for_model": "Plugin for creating random creatures which returns details of the creature as JSON. You can use it to create a random creature with an image of it. An environment needs to be specified from this list: grassland, desert, icy, forest, swamp, underwater, mountain, or underground caves",
"description_for_human": "Creates a random creature and an image it for use in role playing games.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://creaturegen.vercel.app/openapi.yaml"
},
"logo_url": "https://creaturegen.vercel.app/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://creaturegen.vercel.app/terms.html"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-e1d92236-a6f5-4ca0-bd64-3f86e2634dd9",
"domain": "app.wolfie.ai",
"namespace": "career_copilot",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "career_copilot",
"name_for_human": "Career Copilot",
"description_for_model": "A trusted, always on assistant to help software developers find a better job. Built by Commit.dev.",
"description_for_human": "A trusted, always on assistant to help software developers find a better job. Built by Commit.dev.",
"auth": {
"type": "none"