@toolsdk.ai/registry 1.0.10 → 1.0.12
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 +21 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,27 @@
|
|
|
1
1
|
# Awesome MCP Registry
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Welcome to the Awesome MCP Registry, your go-to open and structured registry for MCP servers and packages.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Unlike other MCP projects, this `Awesome MCP Registry` leverages structured JSON configs to generate `README.md`, [npm package](https://www.npmjs.com/package/@toolsdk.ai/registry) and [packages-list.json](https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
You can use the `Awesome MCP Registry` to build your own great MCP projects and hosting sites, acting as the database for MCP servers and packages.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
- **README.md**: AI generated a great `README.md` in multi-languages.
|
|
11
|
-
- **packages-list.json**: Get a full list of all MCP servers and packages by running `curl https://toolsdk-ai.github.io/awesome-mcp-registry/collections/packages-list.json`.
|
|
9
|
+
## Quick Start
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
Install via package manager:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @toolsdk.ai/registry
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Use it on your JavaScript / Typescript project:
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import mcpServerLists from '@toolsdk.ai/registry/indexes/packages-lists.json';
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Fetch all the lists via cURL:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
curl https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json
|
|
27
|
+
```
|