@toolsdk.ai/registry 1.0.27 → 1.0.29

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 CHANGED
@@ -1,12 +1,12 @@
1
1
  # Awesome MCP Registry
2
2
 
3
- ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-62-blue)
3
+ ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-63-blue)
4
4
  ![awesome-mcp-registry License](https://img.shields.io/badge/LICENSE-MIT-ff69b4)
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 62+ MCP servers.
9
+ An open, high-quality, well-structured and developer-friendly list of 63+ MCP servers.
10
10
 
11
11
 
12
12
 
@@ -118,6 +118,7 @@ Tools for browsing, scraping, and automating web content in AI-compatible format
118
118
  - [@automatalabs/mcp-server-playwright](https://github.com/Automata-Labs-team/MCP-Server-Playwright/tree/main): MCP server for browser automation using Playwright
119
119
  - [@modelcontextprotocol/server-puppeteer](https://github.com/modelcontextprotocol/servers/blob/main/src/puppeteer): MCP server for browser automation using Puppeteer
120
120
  - [@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.
121
+ - [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.
121
122
  - [hyperbrowser-mcp](https://github.com/hyperbrowserai/mcp/tree/main): An MCP server for Hyperbrowser - Hyperbrowser is the next-generation platform empowering AI agents and enabling effortless, scalable browser automation
122
123
  - [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
123
124
 
@@ -1,3 +1,14 @@
1
+ /**
2
+ * Featured MCP Servers Configuration
3
+ *
4
+ * Maintained by toolsdk.ai
5
+ * Contains toolsdk.ai's officially recommended featured mcp servers
6
+ */
7
+
1
8
  export default [
2
- '@modelcontextprotocol/server-github',
9
+ "@modelcontextprotocol/server-github",
10
+ "@modelcontextprotocol/server-brave-search",
11
+ "@modelcontextprotocol/server-everart",
12
+ "@modelcontextprotocol/server-slack",
13
+ "@modelcontextprotocol/server-google-maps"
3
14
  ];
@@ -1 +1,18 @@
1
- export default [];
1
+ /**
2
+ * Verified MCP Servers Configuration
3
+ *
4
+ * Maintained by toolsdk.ai
5
+ * Contains a list of mcp servers that have been verified by toolsdk.ai:
6
+ * - Prompts have been validated as safe
7
+ * - Code has been confirmed to run properly on the toolsdk.ai platform
8
+ */
9
+
10
+ export default [
11
+ "@modelcontextprotocol/server-brave-search",
12
+ "@modelcontextprotocol/server-github",
13
+ "@modelcontextprotocol/server-gitlab",
14
+ "@modelcontextprotocol/server-sequential-thinking",
15
+ "@modelcontextprotocol/server-everart",
16
+ "@modelcontextprotocol/server-slack",
17
+ "@modelcontextprotocol/server-google-maps"
18
+ ];
@@ -38,6 +38,7 @@
38
38
  "@automatalabs/mcp-server-playwright",
39
39
  "@modelcontextprotocol/server-puppeteer",
40
40
  "@executeautomation/playwright-mcp-server",
41
+ "tavily-mcp",
41
42
  "hyperbrowser-mcp",
42
43
  "mcp-server-fetch"
43
44
  ]
@@ -17,6 +17,9 @@
17
17
  "@executeautomation/playwright-mcp-server": {
18
18
  "path": "browser-automation/executeautomation-playwright-mcp-server.json"
19
19
  },
20
+ "tavily-mcp": {
21
+ "path": "browser-automation/tavily-mcp.json"
22
+ },
20
23
  "hyperbrowser-mcp": {
21
24
  "path": "browser-automation/hyperbrowser-mcp.json"
22
25
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "exports": {
6
6
  "./*": "./*",
@@ -0,0 +1,14 @@
1
+ {
2
+ "type": "mcp-server",
3
+ "packageName": "tavily-mcp",
4
+ "description": "Providing seamless integration with Tavily's search and extract tools for real-time web search and intelligent data extraction.",
5
+ "url": "https://github.com/tavily-ai/tavily-mcp/tree/main",
6
+ "runtime": "node",
7
+ "license": "MIT",
8
+ "env": {
9
+ "TAVILY_API_KEY": {
10
+ "description": "API KEY for Tavily",
11
+ "required": true
12
+ }
13
+ }
14
+ }