@toolsdk.ai/registry 1.0.129 → 1.0.130
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 +14 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,12 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
**Your private, secure, and customizable MCP Registry — take full control of your tools.**
|
|
8
8
|
|
|
9
|
-
<p align="center">
|
|
10
|
-
<a href="https://www.producthunt.com/products/toolsdk-ai">
|
|
11
|
-
<img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=997428&theme=light&period=daily" alt="Product Hunt" height="40" />
|
|
12
|
-
</a>
|
|
13
|
-
</p>
|
|
14
|
-
|
|
15
9
|
<p align="center">
|
|
16
10
|
<a href="https://www.npmjs.com/package/@toolsdk.ai/registry">
|
|
17
11
|
<img src="https://img.shields.io/npm/v/@toolsdk.ai/registry.svg?style=flat-square" alt="npm version" />
|
|
@@ -23,6 +17,12 @@
|
|
|
23
17
|
<img src="https://img.shields.io/badge/LICENSE-MIT-ff69b4?style=flat-square" alt="License" />
|
|
24
18
|
</p>
|
|
25
19
|
|
|
20
|
+
<p align="center">
|
|
21
|
+
<a href="https://www.producthunt.com/products/toolsdk-ai">
|
|
22
|
+
<img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=997428&theme=light&period=daily" alt="Product Hunt" height="40" />
|
|
23
|
+
</a>
|
|
24
|
+
</p>
|
|
25
|
+
|
|
26
26
|
<p align="center">
|
|
27
27
|
🚀 <b>Open-source</b>, <b>production-ready</b>, and <b>developer-friendly</b> registry for 4109+ Model Context Protocol (MCP) servers.
|
|
28
28
|
<br />
|
|
@@ -39,6 +39,8 @@
|
|
|
39
39
|
<a href="#quick-start">🐳 <b>Deploy Private Registry</b></a>
|
|
40
40
|
•
|
|
41
41
|
<a href="#install-via-package-manager">📦 <b>Use as SDK</b></a>
|
|
42
|
+
•
|
|
43
|
+
<a href="#submit-new-mcp-servers">➕ <b>Add Server</b></a>
|
|
42
44
|
</p>
|
|
43
45
|
|
|
44
46
|
---
|
|
@@ -55,24 +57,18 @@ Deploy your own **private MCP registry** in 5 minutes! Get a production-ready AI
|
|
|
55
57
|
|
|
56
58
|
Perfect for **AI developers**, **LLM teams**, and **enterprises** building with Claude, Anthropic, and other AI platforms.
|
|
57
59
|
|
|
58
|
-
#### ⚡ Quick Deploy (
|
|
60
|
+
#### ⚡ Quick Deploy (One-Liner)
|
|
59
61
|
|
|
60
|
-
|
|
61
|
-
- Docker & Docker Compose
|
|
62
|
-
- (Optional) Sandock API Key - *Required only if you need secure remote execution features.*
|
|
63
|
-
|
|
64
|
-
**Step 1: Configure Environment**
|
|
65
|
-
|
|
66
|
-
- Edit `.env` (optional): `SANDOCK_API_KEY=your-api-key-here`
|
|
67
|
-
- *Note: You can skip this if you only need the Registry and Search features.*
|
|
68
|
-
- *Note: If you do not want to use the sandbox, set `MCP_SANDBOX_PROVIDER=LOCAL` in `.env`.*
|
|
69
|
-
|
|
70
|
-
**Step 2: Launch with Docker Compose**
|
|
62
|
+
Start the registry immediately with default settings:
|
|
71
63
|
|
|
72
64
|
```bash
|
|
73
65
|
docker compose up -d
|
|
74
66
|
```
|
|
75
67
|
|
|
68
|
+
**Optional Configuration:**
|
|
69
|
+
- Create a `.env` file if you need secure remote execution (Sandock) or want to disable the sandbox (`MCP_SANDBOX_PROVIDER=LOCAL`).
|
|
70
|
+
- *See [Configuration Guide](./docs/DEVELOPMENT.md) for full details.*
|
|
71
|
+
|
|
76
72
|
> 💡 **Tip for Private Deployment**:
|
|
77
73
|
> This registry contains 4109+ public MCP servers. If you only need a specific subset for your private environment, you can prune the `packages/` directory.
|
|
78
74
|
> 📖 See [Package Management Guide](./docs/DEVELOPMENT.md#5--package-management-for-private-deployment) for details.
|