@toolsdk.ai/registry 1.0.26 → 1.0.28
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 +1 -0
- package/config/featured.mjs +12 -1
- package/config/verified.mjs +18 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ An open, high-quality, well-structured and developer-friendly list of 62+ MCP se
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
- [Video: How to submit a MCP server in JSON file?](https://www.youtube.com/watch?v=J_oaDtCoVVo)
|
|
13
14
|
- [Quick Start](#quick-start)
|
|
14
15
|
- [Contributing Guide](./docs/guide.md)
|
|
15
16
|
- [Awesome MCP Servers](#mcp-servers)
|
package/config/featured.mjs
CHANGED
|
@@ -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
|
-
|
|
9
|
+
"@modelcontextprotocol/server-github",
|
|
10
|
+
"@modelcontextprotocol/server-brave-search",
|
|
11
|
+
"@modelcontextprotocol/server-everart",
|
|
12
|
+
"@modelcontextprotocol/server-slack",
|
|
13
|
+
"@modelcontextprotocol/server-google-maps"
|
|
3
14
|
];
|
package/config/verified.mjs
CHANGED
|
@@ -1 +1,18 @@
|
|
|
1
|
-
|
|
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
|
+
];
|