@toolsdk.ai/registry 1.0.130 → 1.0.131
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 +23 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,6 +51,8 @@
|
|
|
51
51
|
|
|
52
52
|
## 🚀 Quick Start
|
|
53
53
|
|
|
54
|
+
<a id="docker-self-hosting"></a>
|
|
55
|
+
|
|
54
56
|
### 🐳 Self-Hosted MCP Registry with Docker
|
|
55
57
|
|
|
56
58
|
Deploy your own **private MCP registry** in 5 minutes! Get a production-ready AI agent tool registry with full-text search, REST API, and secure sandbox execution.
|
|
@@ -66,7 +68,8 @@ docker compose up -d
|
|
|
66
68
|
```
|
|
67
69
|
|
|
68
70
|
**Optional Configuration:**
|
|
69
|
-
-
|
|
71
|
+
- Set `MCP_SANDBOX_PROVIDER=LOCAL` in `.env` file if you want to disable the sandbox.
|
|
72
|
+
- Set `SANDOCK_API_KEY` if you want to use the sandbox for full deployment.
|
|
70
73
|
- *See [Configuration Guide](./docs/DEVELOPMENT.md) for full details.*
|
|
71
74
|
|
|
72
75
|
> 💡 **Tip for Private Deployment**:
|
|
@@ -186,27 +189,33 @@ mcp_servers = requests.get(
|
|
|
186
189
|
|
|
187
190
|
```mermaid
|
|
188
191
|
graph TD
|
|
189
|
-
subgraph "Client Side"
|
|
190
|
-
User["👤 User / Developer"]
|
|
192
|
+
subgraph ClientSide ["Client Side"]
|
|
191
193
|
LLM["🤖 AI Agent / LLM"]
|
|
194
|
+
User["👤 User / Developer"]
|
|
192
195
|
end
|
|
193
196
|
|
|
194
|
-
subgraph "
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
197
|
+
subgraph DockerEnv ["🐳 Self-Hosted Infrastructure"]
|
|
198
|
+
|
|
199
|
+
subgraph RegistryCore ["Registry Core"]
|
|
200
|
+
API["🌐 Registry API"]
|
|
201
|
+
Search["🔍 Meilisearch"]
|
|
202
|
+
DB["📚 Registry Data"]
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
subgraph RuntimeEnv ["Runtime Environment"]
|
|
206
|
+
Local["💻 Local Exec"]
|
|
207
|
+
Sandbox["🛡️ Secure Sandbox"]
|
|
208
|
+
MCPServer["⚙️ MCP Server"]
|
|
209
|
+
end
|
|
203
210
|
end
|
|
204
211
|
|
|
205
212
|
User -->|Search Tools| API
|
|
206
|
-
LLM -->|Execute Tool
|
|
213
|
+
LLM -->|Execute Tool| API
|
|
207
214
|
API <-->|Query Index| Search
|
|
208
215
|
API -->|Read Metadata| DB
|
|
216
|
+
API -->|Run Tool| Local
|
|
209
217
|
API -->|Run Tool| Sandbox
|
|
218
|
+
Local -->|Execute| MCPServer
|
|
210
219
|
Sandbox -->|Execute| MCPServer
|
|
211
220
|
```
|
|
212
221
|
|
|
@@ -233,7 +242,7 @@ This open-source registry provides:
|
|
|
233
242
|
|
|
234
243
|
- [🎥 Video: How to add a new MCP server](https://www.youtube.com/watch?v=J_oaDtCoVVo)
|
|
235
244
|
- [🚀 Quick Start](#quick-start)
|
|
236
|
-
- [🐳 Docker Self-Hosting](
|
|
245
|
+
- [🐳 Docker Self-Hosting](#docker-self-hosting)
|
|
237
246
|
- [📦 Install via Package Manager](#install-via-package-manager)
|
|
238
247
|
- [📄 Submit New MCP Servers](#submit-new-mcp-servers)
|
|
239
248
|
- [📖 Development Guide](./docs/DEVELOPMENT.md)
|