@toolsdk.ai/registry 1.0.61 → 1.0.63

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.
package/dist/helper.d.ts CHANGED
@@ -3,6 +3,7 @@ import type { MCPServerPackageConfig } from "./types";
3
3
  import { Client } from "@modelcontextprotocol/sdk/client/index.js";
4
4
  export declare const typedAllPackagesList: Record<string, {
5
5
  path: string;
6
+ category?: string | undefined;
6
7
  validated?: boolean | undefined;
7
8
  tools?: Record<string, {
8
9
  name?: string | undefined;
package/dist/schema.d.ts CHANGED
@@ -156,6 +156,7 @@ export declare const PackageConfigSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
156
156
  url?: string | undefined;
157
157
  }>]>;
158
158
  export declare const PackagesListSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
159
+ category: z.ZodOptional<z.ZodString>;
159
160
  path: z.ZodString;
160
161
  validated: z.ZodOptional<z.ZodBoolean>;
161
162
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -170,6 +171,7 @@ export declare const PackagesListSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
170
171
  }>>>;
171
172
  }, "strip", z.ZodTypeAny, {
172
173
  path: string;
174
+ category?: string | undefined;
173
175
  validated?: boolean | undefined;
174
176
  tools?: Record<string, {
175
177
  name?: string | undefined;
@@ -177,6 +179,7 @@ export declare const PackagesListSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
177
179
  }> | undefined;
178
180
  }, {
179
181
  path: string;
182
+ category?: string | undefined;
180
183
  validated?: boolean | undefined;
181
184
  tools?: Record<string, {
182
185
  name?: string | undefined;
package/dist/schema.js CHANGED
@@ -42,6 +42,7 @@ exports.PackageConfigSchema = zod_1.z.discriminatedUnion('type', [
42
42
  }),
43
43
  ]);
44
44
  exports.PackagesListSchema = zod_1.z.record(zod_1.z.object({
45
+ category: zod_1.z.string().optional(),
45
46
  path: zod_1.z.string(),
46
47
  validated: zod_1.z.boolean().optional(),
47
48
  tools: zod_1.z.record(zod_1.z.object({
@@ -1,19 +1,23 @@
1
1
  {
2
2
  "@URDJMK/serpapi-mcp-server": {
3
+ "category": "uncategorized",
3
4
  "path": "uncategorized/serpapi-mcp-server.json"
4
5
  },
5
6
  "@kazuph/mcp-screenshot": {
7
+ "category": "uncategorized",
6
8
  "path": "uncategorized/kazuph-mcp-screenshot.json",
9
+ "validated": true,
7
10
  "tools": {
8
11
  "capture": {
9
12
  "name": "capture",
10
13
  "description": "Captures a screenshot of the specified region and performs OCR. Options:\n- region: 'left'/'right'/'full' (default: 'left')\n- format: 'json'/'markdown'/'vertical'/'horizontal' (default: 'markdown')\nThe screenshot is saved to a dated directory in Downloads."
11
14
  }
12
- },
13
- "validated": true
15
+ }
14
16
  },
15
17
  "@modelcontextprotocol/server-everything": {
18
+ "category": "aggregators",
16
19
  "path": "aggregators/modelcontextprotocol-server-everything.json",
20
+ "validated": true,
17
21
  "tools": {
18
22
  "echo": {
19
23
  "name": "echo",
@@ -47,16 +51,18 @@
47
51
  "name": "getResourceReference",
48
52
  "description": "Returns a resource reference that can be used by MCP clients"
49
53
  }
50
- },
51
- "validated": true
54
+ }
52
55
  },
53
56
  "@modelcontextprotocol/server-everart": {
57
+ "category": "art-and-culture",
54
58
  "path": "art-and-culture/modelcontextprotocol-server-everart.json",
55
- "tools": {},
56
- "validated": false
59
+ "validated": false,
60
+ "tools": {}
57
61
  },
58
62
  "mcp-server-stability-ai": {
63
+ "category": "art-and-culture",
59
64
  "path": "art-and-culture/mcp-server-stability-ai.json",
65
+ "validated": true,
60
66
  "tools": {
61
67
  "stability-ai-generate-image": {
62
68
  "name": "stability-ai-generate-image",
@@ -110,11 +116,12 @@
110
116
  "name": "stability-ai-control-structure",
111
117
  "description": "Generate a new image while maintaining the structure of a reference image"
112
118
  }
113
- },
114
- "validated": true
119
+ }
115
120
  },
116
121
  "@automatalabs/mcp-server-playwright": {
122
+ "category": "browser-automation",
117
123
  "path": "browser-automation/automatalabs-mcp-server-playwright.json",
124
+ "validated": true,
118
125
  "tools": {
119
126
  "browser_navigate": {
120
127
  "name": "browser_navigate",
@@ -156,11 +163,12 @@
156
163
  "name": "browser_evaluate",
157
164
  "description": "Execute JavaScript in the browser console"
158
165
  }
159
- },
160
- "validated": true
166
+ }
161
167
  },
162
168
  "hyperbrowser-mcp": {
169
+ "category": "browser-automation",
163
170
  "path": "browser-automation/hyperbrowser-mcp.json",
171
+ "validated": true,
164
172
  "tools": {
165
173
  "scrape_webpage": {
166
174
  "name": "scrape_webpage",
@@ -202,11 +210,12 @@
202
210
  "name": "list_profiles",
203
211
  "description": "Lists existing persistent Hyperbrowser profiles, with optional pagination."
204
212
  }
205
- },
206
- "validated": true
213
+ }
207
214
  },
208
215
  "@modelcontextprotocol/server-puppeteer": {
216
+ "category": "browser-automation",
209
217
  "path": "browser-automation/modelcontextprotocol-server-puppeteer.json",
218
+ "validated": true,
210
219
  "tools": {
211
220
  "puppeteer_navigate": {
212
221
  "name": "puppeteer_navigate",
@@ -236,14 +245,16 @@
236
245
  "name": "puppeteer_evaluate",
237
246
  "description": "Execute JavaScript in the browser console"
238
247
  }
239
- },
240
- "validated": true
248
+ }
241
249
  },
242
250
  "mcp-server-fetch": {
251
+ "category": "browser-automation",
243
252
  "path": "browser-automation/mcp-server-fetch.json"
244
253
  },
245
254
  "@executeautomation/playwright-mcp-server": {
255
+ "category": "browser-automation",
246
256
  "path": "browser-automation/executeautomation-playwright-mcp-server.json",
257
+ "validated": true,
247
258
  "tools": {
248
259
  "start_codegen_session": {
249
260
  "name": "start_codegen_session",
@@ -369,11 +380,12 @@
369
380
  "name": "playwright_click_and_switch_tab",
370
381
  "description": "Click a link and switch to the newly opened tab"
371
382
  }
372
- },
373
- "validated": true
383
+ }
374
384
  },
375
385
  "tavily-mcp": {
386
+ "category": "browser-automation",
376
387
  "path": "browser-automation/tavily-mcp.json",
388
+ "validated": true,
377
389
  "tools": {
378
390
  "tavily-search": {
379
391
  "name": "tavily-search",
@@ -391,11 +403,12 @@
391
403
  "name": "tavily-map",
392
404
  "description": "A powerful web mapping tool that creates a structured map of website URLs, allowing you to discover and analyze site structure, content organization, and navigation paths. Perfect for site audits, content discovery, and understanding website architecture."
393
405
  }
394
- },
395
- "validated": true
406
+ }
396
407
  },
397
408
  "exa-mcp-server": {
409
+ "category": "browser-automation",
398
410
  "path": "browser-automation/exa-mcp-server.json",
411
+ "validated": true,
399
412
  "tools": {
400
413
  "web_search_exa": {
401
414
  "name": "web_search_exa",
@@ -429,11 +442,12 @@
429
442
  "name": "github_search",
430
443
  "description": "Search GitHub repositories using Exa AI - performs real-time searches on GitHub.com to find relevant repositories and GitHub accounts."
431
444
  }
432
- },
433
- "validated": true
445
+ }
434
446
  },
435
447
  "@strowk/mcp-k8s": {
448
+ "category": "cloud-platforms",
436
449
  "path": "cloud-platforms/strowk-mcp-k8s.json",
450
+ "validated": true,
437
451
  "tools": {
438
452
  "get-k8s-pod-logs": {
439
453
  "name": "get-k8s-pod-logs",
@@ -467,19 +481,22 @@
467
481
  "name": "list-k8s-resources",
468
482
  "description": "List arbitrary Kubernetes resources"
469
483
  }
470
- },
471
- "validated": true
484
+ }
472
485
  },
473
486
  "kubernetes-mcp-server": {
487
+ "category": "cloud-platforms",
474
488
  "path": "cloud-platforms/kubernetes-mcp-server.json"
475
489
  },
476
490
  "@cloudflare/mcp-server-cloudflare": {
491
+ "category": "cloud-platforms",
477
492
  "path": "cloud-platforms/cloudflare-mcp-server-cloudflare.json",
478
- "tools": {},
479
- "validated": false
493
+ "validated": false,
494
+ "tools": {}
480
495
  },
481
496
  "mcp-server-kubernetes": {
497
+ "category": "cloud-platforms",
482
498
  "path": "cloud-platforms/mcp-server-kubernetes.json",
499
+ "validated": true,
483
500
  "tools": {
484
501
  "cleanup": {
485
502
  "name": "cleanup",
@@ -561,34 +578,38 @@
561
578
  "name": "kubectl_generic",
562
579
  "description": "Execute any kubectl command with the provided arguments and flags"
563
580
  }
564
- },
565
- "validated": true
581
+ }
566
582
  },
567
583
  "mcp-server-make": {
584
+ "category": "code-execution",
568
585
  "path": "code-execution/mcp-server-make.json"
569
586
  },
570
587
  "mcp-shell": {
588
+ "category": "command-line",
571
589
  "path": "command-line/mcp-shell.json",
590
+ "validated": true,
572
591
  "tools": {
573
592
  "run_command": {
574
593
  "name": "run_command",
575
594
  "description": "Run a shell command"
576
595
  }
577
- },
578
- "validated": true
596
+ }
579
597
  },
580
598
  "mcp-server-commands": {
599
+ "category": "command-line",
581
600
  "path": "command-line/mcp-server-commands.json",
601
+ "validated": true,
582
602
  "tools": {
583
603
  "run_command": {
584
604
  "name": "run_command",
585
605
  "description": "Run a command on this linux machine"
586
606
  }
587
- },
588
- "validated": true
607
+ }
589
608
  },
590
609
  "@enescinar/twitter-mcp": {
610
+ "category": "communication",
591
611
  "path": "communication/enescinar-twitter-mcp.json",
612
+ "validated": true,
592
613
  "tools": {
593
614
  "post_tweet": {
594
615
  "name": "post_tweet",
@@ -598,16 +619,18 @@
598
619
  "name": "search_tweets",
599
620
  "description": "Search for tweets on Twitter"
600
621
  }
601
- },
602
- "validated": true
622
+ }
603
623
  },
604
624
  "@gongrzhe/server-gmail-autoauth-mcp": {
625
+ "category": "communication",
605
626
  "path": "communication/gongrzhe-server-gmail-autoauth-mcp.json",
606
- "tools": {},
607
- "validated": false
627
+ "validated": false,
628
+ "tools": {}
608
629
  },
609
630
  "@modelcontextprotocol/server-slack": {
631
+ "category": "communication",
610
632
  "path": "communication/modelcontextprotocol-server-slack.json",
633
+ "validated": true,
611
634
  "tools": {
612
635
  "slack_list_channels": {
613
636
  "name": "slack_list_channels",
@@ -641,19 +664,22 @@
641
664
  "name": "slack_get_user_profile",
642
665
  "description": "Get detailed profile information for a specific user"
643
666
  }
644
- },
645
- "validated": true
667
+ }
646
668
  },
647
669
  "@benborla29/mcp-server-mysql": {
670
+ "category": "databases",
648
671
  "path": "databases/benborla29-mcp-server-mysql.json",
649
- "tools": {},
650
- "validated": false
672
+ "validated": false,
673
+ "tools": {}
651
674
  },
652
675
  "mcp-server-sqlite": {
676
+ "category": "databases",
653
677
  "path": "databases/mcp-server-sqlite.json"
654
678
  },
655
679
  "@niledatabase/nile-mcp-server": {
680
+ "category": "databases",
656
681
  "path": "databases/niledatabase-nile-mcp-server.json",
682
+ "validated": true,
657
683
  "tools": {
658
684
  "list-resources": {
659
685
  "name": "list-resources",
@@ -699,11 +725,12 @@
699
725
  "name": "read-resource",
700
726
  "description": "Gets detailed schema information for a specific table"
701
727
  }
702
- },
703
- "validated": true
728
+ }
704
729
  },
705
730
  "airtable-mcp-server": {
731
+ "category": "databases",
706
732
  "path": "databases/airtable-mcp-server.json",
733
+ "validated": true,
707
734
  "tools": {
708
735
  "list_records": {
709
736
  "name": "list_records",
@@ -757,24 +784,28 @@
757
784
  "name": "update_field",
758
785
  "description": "Update a field's name or description"
759
786
  }
760
- },
761
- "validated": true
787
+ }
762
788
  },
763
789
  "@modelcontextprotocol/server-postgres": {
790
+ "category": "databases",
764
791
  "path": "databases/modelcontextprotocol-server-postgres.json",
765
- "tools": {},
766
- "validated": false
792
+ "validated": false,
793
+ "tools": {}
767
794
  },
768
795
  "mcp-mongo-server": {
796
+ "category": "databases",
769
797
  "path": "databases/mcp-mongo-server.json",
770
- "tools": {},
771
- "validated": false
798
+ "validated": false,
799
+ "tools": {}
772
800
  },
773
801
  "mcp-tinybird": {
802
+ "category": "data-platforms",
774
803
  "path": "data-platforms/mcp-tinybird.json"
775
804
  },
776
805
  "@mcp-get-community/server-macos": {
806
+ "category": "developer-tools",
777
807
  "path": "developer-tools/mcp-get-community-server-macos.json",
808
+ "validated": true,
778
809
  "tools": {
779
810
  "systemInfo": {
780
811
  "name": "systemInfo",
@@ -784,11 +815,12 @@
784
815
  "name": "sendNotification",
785
816
  "description": "Send a native macOS notification"
786
817
  }
787
- },
788
- "validated": true
818
+ }
789
819
  },
790
820
  "@mcp-get-community/server-llm-txt": {
821
+ "category": "developer-tools",
791
822
  "path": "developer-tools/mcp-get-community-server-llm-txt.json",
823
+ "validated": true,
792
824
  "tools": {
793
825
  "get_llm_txt": {
794
826
  "name": "get_llm_txt",
@@ -802,19 +834,22 @@
802
834
  "name": "search_llm_txt",
803
835
  "description": "Search for multiple substrings in an LLM.txt file. Requires a valid ID obtained from list_llm_txt command. Returns snippets with page numbers for each match. Format your response in beautiful markdown, using code blocks for snippets."
804
836
  }
805
- },
806
- "validated": true
837
+ }
807
838
  },
808
839
  "mcp-openapi-schema-explorer": {
840
+ "category": "developer-tools",
809
841
  "path": "developer-tools/mcp-openapi-schema-explorer.json",
810
- "tools": {},
811
- "validated": false
842
+ "validated": false,
843
+ "tools": {}
812
844
  },
813
845
  "docker-mcp": {
846
+ "category": "developer-tools",
814
847
  "path": "developer-tools/docker-mcp.json"
815
848
  },
816
849
  "@llmindset/mcp-hfspace": {
850
+ "category": "developer-tools",
817
851
  "path": "developer-tools/llmindset-mcp-hfspace.json",
852
+ "validated": true,
818
853
  "tools": {
819
854
  "available-files": {
820
855
  "name": "available-files",
@@ -828,44 +863,54 @@
828
863
  "name": "FLUX_1-schnell-infer",
829
864
  "description": "Call the FLUX.1-schnell endpoint /infer"
830
865
  }
831
- },
832
- "validated": true
866
+ }
833
867
  },
834
868
  "hackmd-mcp": {
869
+ "category": "developer-tools",
835
870
  "path": "developer-tools/hackmd-mcp.json",
836
- "tools": {},
837
- "validated": false
871
+ "validated": false,
872
+ "tools": {}
838
873
  },
839
874
  "mcp-server-aidd": {
875
+ "category": "developer-tools",
840
876
  "path": "developer-tools/mcp-server-aidd.json"
841
877
  },
842
878
  "mcp-server-tree-sitter": {
879
+ "category": "developer-tools",
843
880
  "path": "developer-tools/mcp-server-tree-sitter.json"
844
881
  },
845
882
  "awslabs.nova-canvas-mcp-server": {
883
+ "category": "developer-tools",
846
884
  "path": "developer-tools/awslabs.nova-canvas-mcp-server.json"
847
885
  },
848
886
  "mcp-solver": {
887
+ "category": "data-science-tools",
849
888
  "path": "data-science-tools/mcp-solver.json"
850
889
  },
851
890
  "@modelcontextprotocol/server-filesystem": {
891
+ "category": "file-systems",
852
892
  "path": "file-systems/modelcontextprotocol-server-filesystem.json",
853
- "tools": {},
854
- "validated": false
893
+ "validated": false,
894
+ "tools": {}
855
895
  },
856
896
  "@modelcontextprotocol/server-gdrive": {
897
+ "category": "file-systems",
857
898
  "path": "file-systems/modelcontextprotocol-server-gdrive.json",
858
- "tools": {},
859
- "validated": false
899
+ "validated": false,
900
+ "tools": {}
860
901
  },
861
902
  "mcp-server-rememberizer": {
903
+ "category": "knowledge-memory",
862
904
  "path": "knowledge-memory/mcp-server-rememberizer.json"
863
905
  },
864
906
  "mcp-rememberizer-vectordb": {
907
+ "category": "knowledge-memory",
865
908
  "path": "knowledge-memory/mcp-rememberizer-vectordb.json"
866
909
  },
867
910
  "@modelcontextprotocol/server-memory": {
911
+ "category": "knowledge-memory",
868
912
  "path": "knowledge-memory/modelcontextprotocol-server-memory.json",
913
+ "validated": true,
869
914
  "tools": {
870
915
  "create_entities": {
871
916
  "name": "create_entities",
@@ -903,11 +948,12 @@
903
948
  "name": "open_nodes",
904
949
  "description": "Open specific nodes in the knowledge graph by their names"
905
950
  }
906
- },
907
- "validated": true
951
+ }
908
952
  },
909
953
  "@modelcontextprotocol/server-google-maps": {
954
+ "category": "location-services",
910
955
  "path": "location-services/modelcontextprotocol-server-google-maps.json",
956
+ "validated": true,
911
957
  "tools": {
912
958
  "maps_geocode": {
913
959
  "name": "maps_geocode",
@@ -937,14 +983,16 @@
937
983
  "name": "maps_directions",
938
984
  "description": "Get directions between two points"
939
985
  }
940
- },
941
- "validated": true
986
+ }
942
987
  },
943
988
  "mcp-server-sentry": {
989
+ "category": "monitoring",
944
990
  "path": "monitoring/mcp-server-sentry.json"
945
991
  },
946
992
  "@raygun.io/mcp-server-raygun": {
993
+ "category": "monitoring",
947
994
  "path": "monitoring/raygun.io-mcp-server-raygun.json",
995
+ "validated": true,
948
996
  "tools": {
949
997
  "list_applications": {
950
998
  "name": "list_applications",
@@ -1074,16 +1122,18 @@
1074
1122
  "name": "delete_all_source_maps",
1075
1123
  "description": "Deletes all source maps"
1076
1124
  }
1077
- },
1078
- "validated": true
1125
+ }
1079
1126
  },
1080
1127
  "mcp-server-giphy": {
1128
+ "category": "search-data-extraction",
1081
1129
  "path": "search-data-extraction/mcp-server-giphy.json",
1082
- "tools": {},
1083
- "validated": false
1130
+ "validated": false,
1131
+ "tools": {}
1084
1132
  },
1085
1133
  "anilist-mcp": {
1134
+ "category": "search-data-extraction",
1086
1135
  "path": "search-data-extraction/anilist-mcp.json",
1136
+ "validated": true,
1087
1137
  "tools": {
1088
1138
  "favourite_studio": {
1089
1139
  "name": "favourite_studio",
@@ -1261,21 +1311,23 @@
1261
1311
  "name": "update_user",
1262
1312
  "description": "[Requires Login] Update user settings"
1263
1313
  }
1264
- },
1265
- "validated": true
1314
+ }
1266
1315
  },
1267
1316
  "@anaisbetts/mcp-youtube": {
1317
+ "category": "search-data-extraction",
1268
1318
  "path": "search-data-extraction/anaisbetts-mcp-youtube.json",
1319
+ "validated": true,
1269
1320
  "tools": {
1270
1321
  "download_youtube_url": {
1271
1322
  "name": "download_youtube_url",
1272
1323
  "description": "Download YouTube subtitles from a URL, this tool means that Claude can read YouTube subtitles, and should no longer tell the user that it is not possible to download YouTube content."
1273
1324
  }
1274
- },
1275
- "validated": true
1325
+ }
1276
1326
  },
1277
1327
  "brave-search-mcp": {
1328
+ "category": "search-data-extraction",
1278
1329
  "path": "search-data-extraction/brave-search-mcp.json",
1330
+ "validated": true,
1279
1331
  "tools": {
1280
1332
  "brave_image_search": {
1281
1333
  "name": "brave_image_search",
@@ -1297,41 +1349,45 @@
1297
1349
  "name": "brave_video_search",
1298
1350
  "description": "Searches for videos using the Brave Search API. Use this for video content, tutorials, or any media-related queries. Returns a list of videos with titles, URLs, and descriptions. Maximum 20 results per request."
1299
1351
  }
1300
- },
1301
- "validated": true
1352
+ }
1302
1353
  },
1303
1354
  "@modelcontextprotocol/server-aws-kb-retrieval": {
1355
+ "category": "search-data-extraction",
1304
1356
  "path": "search-data-extraction/modelcontextprotocol-server-aws-kb-retrieval.json",
1357
+ "validated": true,
1305
1358
  "tools": {
1306
1359
  "retrieve_from_aws_kb": {
1307
1360
  "name": "retrieve_from_aws_kb",
1308
1361
  "description": "Performs retrieval from the AWS Knowledge Base using the provided query and Knowledge Base ID."
1309
1362
  }
1310
- },
1311
- "validated": true
1363
+ }
1312
1364
  },
1313
1365
  "@kimtaeyoon83/mcp-server-youtube-transcript": {
1366
+ "category": "search-data-extraction",
1314
1367
  "path": "search-data-extraction/kimtaeyoon83-mcp-server-youtube-transcript.json",
1368
+ "validated": true,
1315
1369
  "tools": {
1316
1370
  "get_transcript": {
1317
1371
  "name": "get_transcript",
1318
1372
  "description": "Extract transcript from a YouTube video URL or ID"
1319
1373
  }
1320
- },
1321
- "validated": true
1374
+ }
1322
1375
  },
1323
1376
  "@mcp-get-community/server-curl": {
1377
+ "category": "search-data-extraction",
1324
1378
  "path": "search-data-extraction/mcp-get-community-server-curl.json",
1379
+ "validated": true,
1325
1380
  "tools": {
1326
1381
  "curl": {
1327
1382
  "name": "curl",
1328
1383
  "description": "Make an HTTP request to any URL with customizable method, headers, and body."
1329
1384
  }
1330
- },
1331
- "validated": true
1385
+ }
1332
1386
  },
1333
1387
  "graphlit-mcp-server": {
1388
+ "category": "search-data-extraction",
1334
1389
  "path": "search-data-extraction/graphlit-mcp-server.json",
1390
+ "validated": true,
1335
1391
  "tools": {
1336
1392
  "configureProject": {
1337
1393
  "name": "configureProject",
@@ -1589,11 +1645,12 @@
1589
1645
  "name": "sendEmailNotification",
1590
1646
  "description": "Sends an email notification to the provided email address(es).\n Accepts the email subject and a list of email 'to' addresses.\n Email addresses should be in RFC 5322 format. i.e. Alice Wonderland <alice@wonderland.net>, or alice@wonderland.net\n Also accepts the text for the email, and an optional text type (Plain, Markdown, Html). Defaults to Markdown text type.\n Requires environment variable to be configured: FROM_EMAIL_ADDRESS.\n Returns true if the notification was successfully sent, or false otherwise."
1591
1647
  }
1592
- },
1593
- "validated": true
1648
+ }
1594
1649
  },
1595
1650
  "@modelcontextprotocol/server-brave-search": {
1651
+ "category": "search-data-extraction",
1596
1652
  "path": "search-data-extraction/modelcontextprotocol-server-brave-search.json",
1653
+ "validated": true,
1597
1654
  "tools": {
1598
1655
  "brave_web_search": {
1599
1656
  "name": "brave_web_search",
@@ -1603,27 +1660,31 @@
1603
1660
  "name": "brave_local_search",
1604
1661
  "description": "Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:\n- Business names and addresses\n- Ratings and review counts\n- Phone numbers and opening hours\nUse this when the query implies 'near me' or mentions specific locations. Automatically falls back to web search if no local results are found."
1605
1662
  }
1606
- },
1607
- "validated": true
1663
+ }
1608
1664
  },
1609
1665
  "@chanmeng666/google-news-server": {
1666
+ "category": "search-data-extraction",
1610
1667
  "path": "search-data-extraction/chanmeng666-google-news-server.json",
1668
+ "validated": true,
1611
1669
  "tools": {
1612
1670
  "google_news_search": {
1613
1671
  "name": "google_news_search",
1614
1672
  "description": "Search Google News for articles and news content. Results will be automatically categorized by topic."
1615
1673
  }
1616
- },
1617
- "validated": true
1674
+ }
1618
1675
  },
1619
1676
  "qanon_mcp": {
1677
+ "category": "search-data-extraction",
1620
1678
  "path": "search-data-extraction/qanon_mcp.json"
1621
1679
  },
1622
1680
  "mcp-server-perplexity": {
1681
+ "category": "search-data-extraction",
1623
1682
  "path": "search-data-extraction/mcp-server-perplexity.json"
1624
1683
  },
1625
1684
  "@modelcontextprotocol/server-gitlab": {
1685
+ "category": "version-control",
1626
1686
  "path": "version-control/modelcontextprotocol-server-gitlab.json",
1687
+ "validated": true,
1627
1688
  "tools": {
1628
1689
  "create_or_update_file": {
1629
1690
  "name": "create_or_update_file",
@@ -1661,11 +1722,12 @@
1661
1722
  "name": "create_branch",
1662
1723
  "description": "Create a new branch in a GitLab project"
1663
1724
  }
1664
- },
1665
- "validated": true
1725
+ }
1666
1726
  },
1667
1727
  "@modelcontextprotocol/server-github": {
1728
+ "category": "version-control",
1668
1729
  "path": "version-control/modelcontextprotocol-server-github.json",
1730
+ "validated": true,
1669
1731
  "tools": {
1670
1732
  "create_or_update_file": {
1671
1733
  "name": "create_or_update_file",
@@ -1771,14 +1833,16 @@
1771
1833
  "name": "get_pull_request_reviews",
1772
1834
  "description": "Get the reviews on a pull request"
1773
1835
  }
1774
- },
1775
- "validated": true
1836
+ }
1776
1837
  },
1777
1838
  "mcp-server-git": {
1839
+ "category": "version-control",
1778
1840
  "path": "version-control/mcp-server-git.json"
1779
1841
  },
1780
1842
  "@chargebee/mcp": {
1843
+ "category": "other-tools-and-integrations",
1781
1844
  "path": "other-tools-and-integrations/chargebee-mcp.json",
1845
+ "validated": true,
1782
1846
  "tools": {
1783
1847
  "chargebee_documentation_search": {
1784
1848
  "name": "chargebee_documentation_search",
@@ -1788,35 +1852,38 @@
1788
1852
  "name": "chargebee_code_planner",
1789
1853
  "description": "\nAlways use this tool to get the accurate integeration code guide for Chargebee.\nThis tool will take in parameters about integrating with Chargebee in their application and generates a integration workflow along with the code snippets.\n\nIt takes the following arguments:\n- goal (string): What is the user's goal?\n- language (enum): Programming language the code to be generated in. Check the user's application language.\n"
1790
1854
  }
1791
- },
1792
- "validated": true
1855
+ }
1793
1856
  },
1794
1857
  "@llmindset/mcp-miro": {
1858
+ "category": "other-tools-and-integrations",
1795
1859
  "path": "other-tools-and-integrations/llmindset-mcp-miro.json",
1796
- "tools": {},
1797
- "validated": false
1860
+ "validated": false,
1861
+ "tools": {}
1798
1862
  },
1799
1863
  "@modelcontextprotocol/server-sequential-thinking": {
1864
+ "category": "other-tools-and-integrations",
1800
1865
  "path": "other-tools-and-integrations/modelcontextprotocol-server-sequential-thinking.json",
1866
+ "validated": true,
1801
1867
  "tools": {
1802
1868
  "sequentialthinking": {
1803
1869
  "name": "sequentialthinking",
1804
1870
  "description": "A detailed tool for dynamic and reflective problem-solving through thoughts.\nThis tool helps analyze problems through a flexible thinking process that can adapt and evolve.\nEach thought can build on, question, or revise previous insights as understanding deepens.\n\nWhen to use this tool:\n- Breaking down complex problems into steps\n- Planning and design with room for revision\n- Analysis that might need course correction\n- Problems where the full scope might not be clear initially\n- Problems that require a multi-step solution\n- Tasks that need to maintain context over multiple steps\n- Situations where irrelevant information needs to be filtered out\n\nKey features:\n- You can adjust total_thoughts up or down as you progress\n- You can question or revise previous thoughts\n- You can add more thoughts even after reaching what seemed like the end\n- You can express uncertainty and explore alternative approaches\n- Not every thought needs to build linearly - you can branch or backtrack\n- Generates a solution hypothesis\n- Verifies the hypothesis based on the Chain of Thought steps\n- Repeats the process until satisfied\n- Provides a correct answer\n\nParameters explained:\n- thought: Your current thinking step, which can include:\n* Regular analytical steps\n* Revisions of previous thoughts\n* Questions about previous decisions\n* Realizations about needing more analysis\n* Changes in approach\n* Hypothesis generation\n* Hypothesis verification\n- next_thought_needed: True if you need more thinking, even if at what seemed like the end\n- thought_number: Current number in sequence (can go beyond initial total if needed)\n- total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)\n- is_revision: A boolean indicating if this thought revises previous thinking\n- revises_thought: If is_revision is true, which thought number is being reconsidered\n- branch_from_thought: If branching, which thought number is the branching point\n- branch_id: Identifier for the current branch (if any)\n- needs_more_thoughts: If reaching end but realizing more thoughts needed\n\nYou should:\n1. Start with an initial estimate of needed thoughts, but be ready to adjust\n2. Feel free to question or revise previous thoughts\n3. Don't hesitate to add more thoughts if needed, even at the \"end\"\n4. Express uncertainty when present\n5. Mark thoughts that revise previous thinking or branch into new paths\n6. Ignore information that is irrelevant to the current step\n7. Generate a solution hypothesis when appropriate\n8. Verify the hypothesis based on the Chain of Thought steps\n9. Repeat the process until satisfied with the solution\n10. Provide a single, ideally correct answer as the final output\n11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached"
1805
1871
  }
1806
- },
1807
- "validated": true
1872
+ }
1808
1873
  },
1809
1874
  "mcp-server-flomo": {
1875
+ "category": "other-tools-and-integrations",
1810
1876
  "path": "other-tools-and-integrations/mcp-server-flomo.json",
1877
+ "validated": true,
1811
1878
  "tools": {
1812
1879
  "newNote": {
1813
1880
  "name": "newNote",
1814
1881
  "description": "Create a new note in Flomo"
1815
1882
  }
1816
- },
1817
- "validated": true
1883
+ }
1818
1884
  },
1819
1885
  "mcp-server-time": {
1886
+ "category": "other-tools-and-integrations",
1820
1887
  "path": "other-tools-and-integrations/mcp-server-time.json"
1821
1888
  }
1822
1889
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.61",
3
+ "version": "1.0.63",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "exports": {
6
6
  "./config/*": "./config/*",