@toolsdk.ai/registry 1.0.58 → 1.0.62
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/README.md +3 -2
- package/config/featured.mjs +1 -0
- package/dist/helper.d.ts +1 -0
- package/dist/schema.d.ts +3 -0
- package/dist/schema.js +1 -0
- package/indexes/categories-list.json +2 -1
- package/indexes/packages-list.json +105 -0
- package/package.json +2 -1
- package/packages/browser-automation/exa-mcp-server.json +17 -0
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Awesome MCP Registry
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|

|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Welcome to the Awesome MCP Registry.
|
|
8
8
|
|
|
9
|
-
An open, high-quality, well-structured and developer-friendly list of
|
|
9
|
+
An open, high-quality, well-structured and developer-friendly list of 67+ MCP servers.
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
@@ -134,6 +134,7 @@ Tools for browsing, scraping, and automating web content in AI-compatible format
|
|
|
134
134
|
- [❌ mcp-server-fetch](https://github.com/modelcontextprotocol/servers/blob/main/src/fetch): A Model Context Protocol server providing tools to fetch and convert web content for usage by LLMs (python)
|
|
135
135
|
- [✅ @executeautomation/playwright-mcp-server](https://github.com/executeautomation/mcp-playwright/tree/main/src): A Model Context Protocol server for Playwright for Browser Automation and Web Scraping. (31 tools) (node)
|
|
136
136
|
- [✅ tavily-mcp](https://github.com/tavily-ai/tavily-mcp/tree/main): Providing seamless integration with Tavily's search and extract tools for real-time web search and intelligent data extraction. (4 tools) (node)
|
|
137
|
+
- [✅ exa-mcp-server](https://github.com/exa-labs/exa-mcp-server): A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way. (8 tools) (node)
|
|
137
138
|
|
|
138
139
|
|
|
139
140
|
<a id="cloud-platforms"></a>
|
package/config/featured.mjs
CHANGED
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,8 +1,10 @@
|
|
|
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",
|
|
7
9
|
"tools": {
|
|
8
10
|
"capture": {
|
|
@@ -13,6 +15,7 @@
|
|
|
13
15
|
"validated": true
|
|
14
16
|
},
|
|
15
17
|
"@modelcontextprotocol/server-everything": {
|
|
18
|
+
"category": "aggregators",
|
|
16
19
|
"path": "aggregators/modelcontextprotocol-server-everything.json",
|
|
17
20
|
"tools": {
|
|
18
21
|
"echo": {
|
|
@@ -51,11 +54,13 @@
|
|
|
51
54
|
"validated": true
|
|
52
55
|
},
|
|
53
56
|
"@modelcontextprotocol/server-everart": {
|
|
57
|
+
"category": "art-and-culture",
|
|
54
58
|
"path": "art-and-culture/modelcontextprotocol-server-everart.json",
|
|
55
59
|
"tools": {},
|
|
56
60
|
"validated": false
|
|
57
61
|
},
|
|
58
62
|
"mcp-server-stability-ai": {
|
|
63
|
+
"category": "art-and-culture",
|
|
59
64
|
"path": "art-and-culture/mcp-server-stability-ai.json",
|
|
60
65
|
"tools": {
|
|
61
66
|
"stability-ai-generate-image": {
|
|
@@ -114,6 +119,7 @@
|
|
|
114
119
|
"validated": true
|
|
115
120
|
},
|
|
116
121
|
"@automatalabs/mcp-server-playwright": {
|
|
122
|
+
"category": "browser-automation",
|
|
117
123
|
"path": "browser-automation/automatalabs-mcp-server-playwright.json",
|
|
118
124
|
"tools": {
|
|
119
125
|
"browser_navigate": {
|
|
@@ -160,6 +166,7 @@
|
|
|
160
166
|
"validated": true
|
|
161
167
|
},
|
|
162
168
|
"hyperbrowser-mcp": {
|
|
169
|
+
"category": "browser-automation",
|
|
163
170
|
"path": "browser-automation/hyperbrowser-mcp.json",
|
|
164
171
|
"tools": {
|
|
165
172
|
"scrape_webpage": {
|
|
@@ -206,6 +213,7 @@
|
|
|
206
213
|
"validated": true
|
|
207
214
|
},
|
|
208
215
|
"@modelcontextprotocol/server-puppeteer": {
|
|
216
|
+
"category": "browser-automation",
|
|
209
217
|
"path": "browser-automation/modelcontextprotocol-server-puppeteer.json",
|
|
210
218
|
"tools": {
|
|
211
219
|
"puppeteer_navigate": {
|
|
@@ -240,9 +248,11 @@
|
|
|
240
248
|
"validated": true
|
|
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",
|
|
247
257
|
"tools": {
|
|
248
258
|
"start_codegen_session": {
|
|
@@ -373,6 +383,7 @@
|
|
|
373
383
|
"validated": true
|
|
374
384
|
},
|
|
375
385
|
"tavily-mcp": {
|
|
386
|
+
"category": "browser-automation",
|
|
376
387
|
"path": "browser-automation/tavily-mcp.json",
|
|
377
388
|
"tools": {
|
|
378
389
|
"tavily-search": {
|
|
@@ -394,7 +405,47 @@
|
|
|
394
405
|
},
|
|
395
406
|
"validated": true
|
|
396
407
|
},
|
|
408
|
+
"exa-mcp-server": {
|
|
409
|
+
"category": "browser-automation",
|
|
410
|
+
"path": "browser-automation/exa-mcp-server.json",
|
|
411
|
+
"tools": {
|
|
412
|
+
"web_search_exa": {
|
|
413
|
+
"name": "web_search_exa",
|
|
414
|
+
"description": "Search the web using Exa AI - performs real-time web searches and can scrape content from specific URLs. Supports configurable result counts and returns the content from the most relevant websites."
|
|
415
|
+
},
|
|
416
|
+
"research_paper_search": {
|
|
417
|
+
"name": "research_paper_search",
|
|
418
|
+
"description": "Search across 100M+ research papers with full text access using Exa AI - performs targeted academic paper searches with deep research content coverage. Returns detailed information about relevant academic papers including titles, authors, publication dates, and full text excerpts. Control the number of results and character counts returned to balance comprehensiveness with conciseness based on your task requirements."
|
|
419
|
+
},
|
|
420
|
+
"company_research": {
|
|
421
|
+
"name": "company_research",
|
|
422
|
+
"description": "Research companies using Exa AI - performs targeted searches of company websites to gather comprehensive information about businesses. Returns detailed information from company websites including about pages, pricing, FAQs, blogs, and other relevant content. Specify the company URL and optionally target specific sections of their website."
|
|
423
|
+
},
|
|
424
|
+
"crawling": {
|
|
425
|
+
"name": "crawling",
|
|
426
|
+
"description": "Extract content from specific URLs using Exa AI - performs targeted crawling of web pages to retrieve their full content. Useful for reading articles, PDFs, or any web page when you have the exact URL. Returns the complete text content of the specified URL."
|
|
427
|
+
},
|
|
428
|
+
"competitor_finder": {
|
|
429
|
+
"name": "competitor_finder",
|
|
430
|
+
"description": "Find competitors of a company using Exa AI - performs targeted searches to identify businesses that offer similar products or services. Describe what the company does (without mentioning its name) and optionally provide the company's website to exclude it from results."
|
|
431
|
+
},
|
|
432
|
+
"linkedin_search": {
|
|
433
|
+
"name": "linkedin_search",
|
|
434
|
+
"description": "Search LinkedIn for companies using Exa AI. Simply include company URL, or company name, with 'company page' appended in your query."
|
|
435
|
+
},
|
|
436
|
+
"wikipedia_search_exa": {
|
|
437
|
+
"name": "wikipedia_search_exa",
|
|
438
|
+
"description": "Search Wikipedia using Exa AI - performs searches specifically within Wikipedia.org and returns relevant content from Wikipedia pages."
|
|
439
|
+
},
|
|
440
|
+
"github_search": {
|
|
441
|
+
"name": "github_search",
|
|
442
|
+
"description": "Search GitHub repositories using Exa AI - performs real-time searches on GitHub.com to find relevant repositories and GitHub accounts."
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"validated": true
|
|
446
|
+
},
|
|
397
447
|
"@strowk/mcp-k8s": {
|
|
448
|
+
"category": "cloud-platforms",
|
|
398
449
|
"path": "cloud-platforms/strowk-mcp-k8s.json",
|
|
399
450
|
"tools": {
|
|
400
451
|
"get-k8s-pod-logs": {
|
|
@@ -433,14 +484,17 @@
|
|
|
433
484
|
"validated": true
|
|
434
485
|
},
|
|
435
486
|
"kubernetes-mcp-server": {
|
|
487
|
+
"category": "cloud-platforms",
|
|
436
488
|
"path": "cloud-platforms/kubernetes-mcp-server.json"
|
|
437
489
|
},
|
|
438
490
|
"@cloudflare/mcp-server-cloudflare": {
|
|
491
|
+
"category": "cloud-platforms",
|
|
439
492
|
"path": "cloud-platforms/cloudflare-mcp-server-cloudflare.json",
|
|
440
493
|
"tools": {},
|
|
441
494
|
"validated": false
|
|
442
495
|
},
|
|
443
496
|
"mcp-server-kubernetes": {
|
|
497
|
+
"category": "cloud-platforms",
|
|
444
498
|
"path": "cloud-platforms/mcp-server-kubernetes.json",
|
|
445
499
|
"tools": {
|
|
446
500
|
"cleanup": {
|
|
@@ -527,9 +581,11 @@
|
|
|
527
581
|
"validated": true
|
|
528
582
|
},
|
|
529
583
|
"mcp-server-make": {
|
|
584
|
+
"category": "code-execution",
|
|
530
585
|
"path": "code-execution/mcp-server-make.json"
|
|
531
586
|
},
|
|
532
587
|
"mcp-shell": {
|
|
588
|
+
"category": "command-line",
|
|
533
589
|
"path": "command-line/mcp-shell.json",
|
|
534
590
|
"tools": {
|
|
535
591
|
"run_command": {
|
|
@@ -540,6 +596,7 @@
|
|
|
540
596
|
"validated": true
|
|
541
597
|
},
|
|
542
598
|
"mcp-server-commands": {
|
|
599
|
+
"category": "command-line",
|
|
543
600
|
"path": "command-line/mcp-server-commands.json",
|
|
544
601
|
"tools": {
|
|
545
602
|
"run_command": {
|
|
@@ -550,6 +607,7 @@
|
|
|
550
607
|
"validated": true
|
|
551
608
|
},
|
|
552
609
|
"@enescinar/twitter-mcp": {
|
|
610
|
+
"category": "communication",
|
|
553
611
|
"path": "communication/enescinar-twitter-mcp.json",
|
|
554
612
|
"tools": {
|
|
555
613
|
"post_tweet": {
|
|
@@ -564,11 +622,13 @@
|
|
|
564
622
|
"validated": true
|
|
565
623
|
},
|
|
566
624
|
"@gongrzhe/server-gmail-autoauth-mcp": {
|
|
625
|
+
"category": "communication",
|
|
567
626
|
"path": "communication/gongrzhe-server-gmail-autoauth-mcp.json",
|
|
568
627
|
"tools": {},
|
|
569
628
|
"validated": false
|
|
570
629
|
},
|
|
571
630
|
"@modelcontextprotocol/server-slack": {
|
|
631
|
+
"category": "communication",
|
|
572
632
|
"path": "communication/modelcontextprotocol-server-slack.json",
|
|
573
633
|
"tools": {
|
|
574
634
|
"slack_list_channels": {
|
|
@@ -607,14 +667,17 @@
|
|
|
607
667
|
"validated": true
|
|
608
668
|
},
|
|
609
669
|
"@benborla29/mcp-server-mysql": {
|
|
670
|
+
"category": "databases",
|
|
610
671
|
"path": "databases/benborla29-mcp-server-mysql.json",
|
|
611
672
|
"tools": {},
|
|
612
673
|
"validated": false
|
|
613
674
|
},
|
|
614
675
|
"mcp-server-sqlite": {
|
|
676
|
+
"category": "databases",
|
|
615
677
|
"path": "databases/mcp-server-sqlite.json"
|
|
616
678
|
},
|
|
617
679
|
"@niledatabase/nile-mcp-server": {
|
|
680
|
+
"category": "databases",
|
|
618
681
|
"path": "databases/niledatabase-nile-mcp-server.json",
|
|
619
682
|
"tools": {
|
|
620
683
|
"list-resources": {
|
|
@@ -665,6 +728,7 @@
|
|
|
665
728
|
"validated": true
|
|
666
729
|
},
|
|
667
730
|
"airtable-mcp-server": {
|
|
731
|
+
"category": "databases",
|
|
668
732
|
"path": "databases/airtable-mcp-server.json",
|
|
669
733
|
"tools": {
|
|
670
734
|
"list_records": {
|
|
@@ -723,19 +787,23 @@
|
|
|
723
787
|
"validated": true
|
|
724
788
|
},
|
|
725
789
|
"@modelcontextprotocol/server-postgres": {
|
|
790
|
+
"category": "databases",
|
|
726
791
|
"path": "databases/modelcontextprotocol-server-postgres.json",
|
|
727
792
|
"tools": {},
|
|
728
793
|
"validated": false
|
|
729
794
|
},
|
|
730
795
|
"mcp-mongo-server": {
|
|
796
|
+
"category": "databases",
|
|
731
797
|
"path": "databases/mcp-mongo-server.json",
|
|
732
798
|
"tools": {},
|
|
733
799
|
"validated": false
|
|
734
800
|
},
|
|
735
801
|
"mcp-tinybird": {
|
|
802
|
+
"category": "data-platforms",
|
|
736
803
|
"path": "data-platforms/mcp-tinybird.json"
|
|
737
804
|
},
|
|
738
805
|
"@mcp-get-community/server-macos": {
|
|
806
|
+
"category": "developer-tools",
|
|
739
807
|
"path": "developer-tools/mcp-get-community-server-macos.json",
|
|
740
808
|
"tools": {
|
|
741
809
|
"systemInfo": {
|
|
@@ -750,6 +818,7 @@
|
|
|
750
818
|
"validated": true
|
|
751
819
|
},
|
|
752
820
|
"@mcp-get-community/server-llm-txt": {
|
|
821
|
+
"category": "developer-tools",
|
|
753
822
|
"path": "developer-tools/mcp-get-community-server-llm-txt.json",
|
|
754
823
|
"tools": {
|
|
755
824
|
"get_llm_txt": {
|
|
@@ -768,14 +837,17 @@
|
|
|
768
837
|
"validated": true
|
|
769
838
|
},
|
|
770
839
|
"mcp-openapi-schema-explorer": {
|
|
840
|
+
"category": "developer-tools",
|
|
771
841
|
"path": "developer-tools/mcp-openapi-schema-explorer.json",
|
|
772
842
|
"tools": {},
|
|
773
843
|
"validated": false
|
|
774
844
|
},
|
|
775
845
|
"docker-mcp": {
|
|
846
|
+
"category": "developer-tools",
|
|
776
847
|
"path": "developer-tools/docker-mcp.json"
|
|
777
848
|
},
|
|
778
849
|
"@llmindset/mcp-hfspace": {
|
|
850
|
+
"category": "developer-tools",
|
|
779
851
|
"path": "developer-tools/llmindset-mcp-hfspace.json",
|
|
780
852
|
"tools": {
|
|
781
853
|
"available-files": {
|
|
@@ -794,39 +866,49 @@
|
|
|
794
866
|
"validated": true
|
|
795
867
|
},
|
|
796
868
|
"hackmd-mcp": {
|
|
869
|
+
"category": "developer-tools",
|
|
797
870
|
"path": "developer-tools/hackmd-mcp.json",
|
|
798
871
|
"tools": {},
|
|
799
872
|
"validated": false
|
|
800
873
|
},
|
|
801
874
|
"mcp-server-aidd": {
|
|
875
|
+
"category": "developer-tools",
|
|
802
876
|
"path": "developer-tools/mcp-server-aidd.json"
|
|
803
877
|
},
|
|
804
878
|
"mcp-server-tree-sitter": {
|
|
879
|
+
"category": "developer-tools",
|
|
805
880
|
"path": "developer-tools/mcp-server-tree-sitter.json"
|
|
806
881
|
},
|
|
807
882
|
"awslabs.nova-canvas-mcp-server": {
|
|
883
|
+
"category": "developer-tools",
|
|
808
884
|
"path": "developer-tools/awslabs.nova-canvas-mcp-server.json"
|
|
809
885
|
},
|
|
810
886
|
"mcp-solver": {
|
|
887
|
+
"category": "data-science-tools",
|
|
811
888
|
"path": "data-science-tools/mcp-solver.json"
|
|
812
889
|
},
|
|
813
890
|
"@modelcontextprotocol/server-filesystem": {
|
|
891
|
+
"category": "file-systems",
|
|
814
892
|
"path": "file-systems/modelcontextprotocol-server-filesystem.json",
|
|
815
893
|
"tools": {},
|
|
816
894
|
"validated": false
|
|
817
895
|
},
|
|
818
896
|
"@modelcontextprotocol/server-gdrive": {
|
|
897
|
+
"category": "file-systems",
|
|
819
898
|
"path": "file-systems/modelcontextprotocol-server-gdrive.json",
|
|
820
899
|
"tools": {},
|
|
821
900
|
"validated": false
|
|
822
901
|
},
|
|
823
902
|
"mcp-server-rememberizer": {
|
|
903
|
+
"category": "knowledge-memory",
|
|
824
904
|
"path": "knowledge-memory/mcp-server-rememberizer.json"
|
|
825
905
|
},
|
|
826
906
|
"mcp-rememberizer-vectordb": {
|
|
907
|
+
"category": "knowledge-memory",
|
|
827
908
|
"path": "knowledge-memory/mcp-rememberizer-vectordb.json"
|
|
828
909
|
},
|
|
829
910
|
"@modelcontextprotocol/server-memory": {
|
|
911
|
+
"category": "knowledge-memory",
|
|
830
912
|
"path": "knowledge-memory/modelcontextprotocol-server-memory.json",
|
|
831
913
|
"tools": {
|
|
832
914
|
"create_entities": {
|
|
@@ -869,6 +951,7 @@
|
|
|
869
951
|
"validated": true
|
|
870
952
|
},
|
|
871
953
|
"@modelcontextprotocol/server-google-maps": {
|
|
954
|
+
"category": "location-services",
|
|
872
955
|
"path": "location-services/modelcontextprotocol-server-google-maps.json",
|
|
873
956
|
"tools": {
|
|
874
957
|
"maps_geocode": {
|
|
@@ -903,9 +986,11 @@
|
|
|
903
986
|
"validated": true
|
|
904
987
|
},
|
|
905
988
|
"mcp-server-sentry": {
|
|
989
|
+
"category": "monitoring",
|
|
906
990
|
"path": "monitoring/mcp-server-sentry.json"
|
|
907
991
|
},
|
|
908
992
|
"@raygun.io/mcp-server-raygun": {
|
|
993
|
+
"category": "monitoring",
|
|
909
994
|
"path": "monitoring/raygun.io-mcp-server-raygun.json",
|
|
910
995
|
"tools": {
|
|
911
996
|
"list_applications": {
|
|
@@ -1040,11 +1125,13 @@
|
|
|
1040
1125
|
"validated": true
|
|
1041
1126
|
},
|
|
1042
1127
|
"mcp-server-giphy": {
|
|
1128
|
+
"category": "search-data-extraction",
|
|
1043
1129
|
"path": "search-data-extraction/mcp-server-giphy.json",
|
|
1044
1130
|
"tools": {},
|
|
1045
1131
|
"validated": false
|
|
1046
1132
|
},
|
|
1047
1133
|
"anilist-mcp": {
|
|
1134
|
+
"category": "search-data-extraction",
|
|
1048
1135
|
"path": "search-data-extraction/anilist-mcp.json",
|
|
1049
1136
|
"tools": {
|
|
1050
1137
|
"favourite_studio": {
|
|
@@ -1227,6 +1314,7 @@
|
|
|
1227
1314
|
"validated": true
|
|
1228
1315
|
},
|
|
1229
1316
|
"@anaisbetts/mcp-youtube": {
|
|
1317
|
+
"category": "search-data-extraction",
|
|
1230
1318
|
"path": "search-data-extraction/anaisbetts-mcp-youtube.json",
|
|
1231
1319
|
"tools": {
|
|
1232
1320
|
"download_youtube_url": {
|
|
@@ -1237,6 +1325,7 @@
|
|
|
1237
1325
|
"validated": true
|
|
1238
1326
|
},
|
|
1239
1327
|
"brave-search-mcp": {
|
|
1328
|
+
"category": "search-data-extraction",
|
|
1240
1329
|
"path": "search-data-extraction/brave-search-mcp.json",
|
|
1241
1330
|
"tools": {
|
|
1242
1331
|
"brave_image_search": {
|
|
@@ -1263,6 +1352,7 @@
|
|
|
1263
1352
|
"validated": true
|
|
1264
1353
|
},
|
|
1265
1354
|
"@modelcontextprotocol/server-aws-kb-retrieval": {
|
|
1355
|
+
"category": "search-data-extraction",
|
|
1266
1356
|
"path": "search-data-extraction/modelcontextprotocol-server-aws-kb-retrieval.json",
|
|
1267
1357
|
"tools": {
|
|
1268
1358
|
"retrieve_from_aws_kb": {
|
|
@@ -1273,6 +1363,7 @@
|
|
|
1273
1363
|
"validated": true
|
|
1274
1364
|
},
|
|
1275
1365
|
"@kimtaeyoon83/mcp-server-youtube-transcript": {
|
|
1366
|
+
"category": "search-data-extraction",
|
|
1276
1367
|
"path": "search-data-extraction/kimtaeyoon83-mcp-server-youtube-transcript.json",
|
|
1277
1368
|
"tools": {
|
|
1278
1369
|
"get_transcript": {
|
|
@@ -1283,6 +1374,7 @@
|
|
|
1283
1374
|
"validated": true
|
|
1284
1375
|
},
|
|
1285
1376
|
"@mcp-get-community/server-curl": {
|
|
1377
|
+
"category": "search-data-extraction",
|
|
1286
1378
|
"path": "search-data-extraction/mcp-get-community-server-curl.json",
|
|
1287
1379
|
"tools": {
|
|
1288
1380
|
"curl": {
|
|
@@ -1293,6 +1385,7 @@
|
|
|
1293
1385
|
"validated": true
|
|
1294
1386
|
},
|
|
1295
1387
|
"graphlit-mcp-server": {
|
|
1388
|
+
"category": "search-data-extraction",
|
|
1296
1389
|
"path": "search-data-extraction/graphlit-mcp-server.json",
|
|
1297
1390
|
"tools": {
|
|
1298
1391
|
"configureProject": {
|
|
@@ -1555,6 +1648,7 @@
|
|
|
1555
1648
|
"validated": true
|
|
1556
1649
|
},
|
|
1557
1650
|
"@modelcontextprotocol/server-brave-search": {
|
|
1651
|
+
"category": "search-data-extraction",
|
|
1558
1652
|
"path": "search-data-extraction/modelcontextprotocol-server-brave-search.json",
|
|
1559
1653
|
"tools": {
|
|
1560
1654
|
"brave_web_search": {
|
|
@@ -1569,6 +1663,7 @@
|
|
|
1569
1663
|
"validated": true
|
|
1570
1664
|
},
|
|
1571
1665
|
"@chanmeng666/google-news-server": {
|
|
1666
|
+
"category": "search-data-extraction",
|
|
1572
1667
|
"path": "search-data-extraction/chanmeng666-google-news-server.json",
|
|
1573
1668
|
"tools": {
|
|
1574
1669
|
"google_news_search": {
|
|
@@ -1579,12 +1674,15 @@
|
|
|
1579
1674
|
"validated": true
|
|
1580
1675
|
},
|
|
1581
1676
|
"qanon_mcp": {
|
|
1677
|
+
"category": "search-data-extraction",
|
|
1582
1678
|
"path": "search-data-extraction/qanon_mcp.json"
|
|
1583
1679
|
},
|
|
1584
1680
|
"mcp-server-perplexity": {
|
|
1681
|
+
"category": "search-data-extraction",
|
|
1585
1682
|
"path": "search-data-extraction/mcp-server-perplexity.json"
|
|
1586
1683
|
},
|
|
1587
1684
|
"@modelcontextprotocol/server-gitlab": {
|
|
1685
|
+
"category": "version-control",
|
|
1588
1686
|
"path": "version-control/modelcontextprotocol-server-gitlab.json",
|
|
1589
1687
|
"tools": {
|
|
1590
1688
|
"create_or_update_file": {
|
|
@@ -1627,6 +1725,7 @@
|
|
|
1627
1725
|
"validated": true
|
|
1628
1726
|
},
|
|
1629
1727
|
"@modelcontextprotocol/server-github": {
|
|
1728
|
+
"category": "version-control",
|
|
1630
1729
|
"path": "version-control/modelcontextprotocol-server-github.json",
|
|
1631
1730
|
"tools": {
|
|
1632
1731
|
"create_or_update_file": {
|
|
@@ -1737,9 +1836,11 @@
|
|
|
1737
1836
|
"validated": true
|
|
1738
1837
|
},
|
|
1739
1838
|
"mcp-server-git": {
|
|
1839
|
+
"category": "version-control",
|
|
1740
1840
|
"path": "version-control/mcp-server-git.json"
|
|
1741
1841
|
},
|
|
1742
1842
|
"@chargebee/mcp": {
|
|
1843
|
+
"category": "other-tools-and-integrations",
|
|
1743
1844
|
"path": "other-tools-and-integrations/chargebee-mcp.json",
|
|
1744
1845
|
"tools": {
|
|
1745
1846
|
"chargebee_documentation_search": {
|
|
@@ -1754,11 +1855,13 @@
|
|
|
1754
1855
|
"validated": true
|
|
1755
1856
|
},
|
|
1756
1857
|
"@llmindset/mcp-miro": {
|
|
1858
|
+
"category": "other-tools-and-integrations",
|
|
1757
1859
|
"path": "other-tools-and-integrations/llmindset-mcp-miro.json",
|
|
1758
1860
|
"tools": {},
|
|
1759
1861
|
"validated": false
|
|
1760
1862
|
},
|
|
1761
1863
|
"@modelcontextprotocol/server-sequential-thinking": {
|
|
1864
|
+
"category": "other-tools-and-integrations",
|
|
1762
1865
|
"path": "other-tools-and-integrations/modelcontextprotocol-server-sequential-thinking.json",
|
|
1763
1866
|
"tools": {
|
|
1764
1867
|
"sequentialthinking": {
|
|
@@ -1769,6 +1872,7 @@
|
|
|
1769
1872
|
"validated": true
|
|
1770
1873
|
},
|
|
1771
1874
|
"mcp-server-flomo": {
|
|
1875
|
+
"category": "other-tools-and-integrations",
|
|
1772
1876
|
"path": "other-tools-and-integrations/mcp-server-flomo.json",
|
|
1773
1877
|
"tools": {
|
|
1774
1878
|
"newNote": {
|
|
@@ -1779,6 +1883,7 @@
|
|
|
1779
1883
|
"validated": true
|
|
1780
1884
|
},
|
|
1781
1885
|
"mcp-server-time": {
|
|
1886
|
+
"category": "other-tools-and-integrations",
|
|
1782
1887
|
"path": "other-tools-and-integrations/mcp-server-time.json"
|
|
1783
1888
|
}
|
|
1784
1889
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolsdk.ai/registry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.62",
|
|
4
4
|
"description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./config/*": "./config/*",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"@modelcontextprotocol/server-puppeteer": "latest",
|
|
39
39
|
"@executeautomation/playwright-mcp-server": "latest",
|
|
40
40
|
"tavily-mcp": "latest",
|
|
41
|
+
"exa-mcp-server": "latest",
|
|
41
42
|
"@strowk/mcp-k8s": "latest",
|
|
42
43
|
"@cloudflare/mcp-server-cloudflare": "latest",
|
|
43
44
|
"mcp-server-kubernetes": "latest",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "mcp-server",
|
|
3
|
+
"packageName": "exa-mcp-server",
|
|
4
|
+
"description": "A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.",
|
|
5
|
+
"url": "https://github.com/exa-labs/exa-mcp-server",
|
|
6
|
+
"runtime": "node",
|
|
7
|
+
"binArgs": [
|
|
8
|
+
"--tools=web_search_exa,research_paper_search,company_research,crawling,competitor_finder,linkedin_search,wikipedia_search_exa,github_search"
|
|
9
|
+
],
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"env": {
|
|
12
|
+
"EXA_API_KEY": {
|
|
13
|
+
"description": "API KEY for Exa",
|
|
14
|
+
"required": true
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|