@toolsdk.ai/registry 1.0.122 → 1.0.124

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,15 +1,15 @@
1
1
  <div align="center">
2
2
 
3
- # Awesome MCP Registry
3
+ # ToolSDK MCP Registry
4
4
 
5
5
  **Your private, secure, and customizable MCP Registry — take full control of your tools.**
6
6
 
7
7
  [![Product Hunt](https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=997428&theme=light&period=daily)](https://www.producthunt.com/products/toolsdk-ai)
8
8
 
9
- ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-4108-blue)
10
- ![awesome-mcp-registry License](https://img.shields.io/badge/LICENSE-MIT-ff69b4)
9
+ ![How many MCP Servers in ToolSDK MCP Registry](https://img.shields.io/badge/MCP_Servers-4109-blue)
10
+ ![toolsdk-mcp-registry License](https://img.shields.io/badge/LICENSE-MIT-ff69b4)
11
11
 
12
- 🚀 **Open-source**, **production-ready**, and **developer-friendly** registry for 4108+ Model Context Protocol (MCP) servers, plugins, and AI agent tools.
12
+ 🚀 **Open-source**, **production-ready**, and **developer-friendly** registry for 4109+ Model Context Protocol (MCP) servers, plugins, and AI agent tools.
13
13
 
14
14
  Perfect for **AI automation**, **chatbot development**, **LLM integrations**, and **enterprise AI deployments**.
15
15
 
@@ -17,14 +17,14 @@ Perfect for **AI automation**, **chatbot development**, **LLM integrations**, an
17
17
 
18
18
  </div>
19
19
 
20
- ## 🌟 Why Awesome MCP Registry?
20
+ ## 🌟 Why ToolSDK MCP Registry?
21
21
 
22
- **Awesome MCP Registry** is the most comprehensive, self-hosted registry for Model Context Protocol (MCP) servers and AI agent tools. Built for developers, teams, and enterprises who need full control over their AI infrastructure.
22
+ **ToolSDK MCP Registry** is the most comprehensive, self-hosted registry for Model Context Protocol (MCP) servers and AI agent tools. Built for developers, teams, and enterprises who need full control over their AI infrastructure.
23
23
 
24
24
  ### 🎯 Key Features
25
25
 
26
26
  - 🔐 **Private & Self-Hosted** - Deploy your own secure MCP registry with Docker in minutes
27
- - 🤖 **4108+ AI Tools** - Largest curated collection of MCP servers for Claude, LLMs, and AI agents
27
+ - 🤖 **4109+ AI Tools** - Largest curated collection of MCP servers for Claude, LLMs, and AI agents
28
28
  - ⚡ **Remote Execution** - Run MCP tools in isolated sandbox environments via REST API
29
29
  - 🔍 **Powerful Search** - Fast, full-text search powered by Meilisearch
30
30
  - 📦 **NPM Integration** - Use as a TypeScript/Node.js SDK in your projects
@@ -46,7 +46,7 @@ Perfect for **AI automation**, **chatbot development**, **LLM integrations**, an
46
46
 
47
47
  This open-source registry provides:
48
48
 
49
- - 📚 **Structured Database** - 4108+ validated MCP servers with metadata
49
+ - 📚 **Structured Database** - 4109+ validated MCP servers with metadata
50
50
  - 🔗 **Multiple Formats** - JSON, npm package, and generated documentation
51
51
  - 🌐 **REST API** - Query and execute tools remotely
52
52
  - 📖 **Auto-Generated Docs** - Always up-to-date README and API documentation
@@ -55,7 +55,7 @@ This open-source registry provides:
55
55
 
56
56
  - 📄 `README.md` - Human-readable documentation
57
57
  - 📦 [npm package](https://www.npmjs.com/package/@toolsdk.ai/registry) - TypeScript/JavaScript SDK
58
- - 🔗 [packages-list.json](https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json) - Raw data API
58
+ - 🔗 [packages-list.json](https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json) - Raw data API
59
59
 
60
60
  ---
61
61
 
@@ -68,7 +68,7 @@ This open-source registry provides:
68
68
  - [📄 Submit New MCP Servers](#submit-new-mcp-servers)
69
69
  - [📖 Development Guide](./docs/DEVELOPMENT.md)
70
70
  - [🤝 Contributing Guide](./docs/guide.md)
71
- - [⭐ Awesome MCP Servers](#mcp-servers)
71
+ - [⭐ ToolSDK MCP Servers](#mcp-servers)
72
72
 
73
73
  - [Uncategorized](#uncategorized)
74
74
  - [Aggregators](#aggregators)
@@ -134,7 +134,7 @@ That's it! Your self-hosted MCP registry is now running with:
134
134
 
135
135
  - 🌐 **Web Interface**: http://localhost:3003
136
136
  - 📚 **Swagger API Docs**: http://localhost:3003/swagger
137
- - 🔍 **Search & Execute** 4108+ MCP tools remotely
137
+ - 🔍 **Search & Execute** 4109+ MCP tools remotely
138
138
  - 🤖 **Integrate** with your AI agents, chatbots, and LLM applications
139
139
 
140
140
  #### 💻 Remote Tool Execution Example
@@ -148,7 +148,7 @@ curl -X POST http://localhost:3003/api/v1/packages/run \
148
148
  "packageName": "@modelcontextprotocol/server-everything",
149
149
  "toolKey": "echo",
150
150
  "inputData": {
151
- "message": "Hello from Awesome MCP Registry!"
151
+ "message": "Hello from ToolSDK MCP Registry!"
152
152
  },
153
153
  "envs": {}
154
154
  }'
@@ -185,13 +185,13 @@ import mcpServerLists from '@toolsdk.ai/registry/indexes/packages-lists.json';
185
185
  Fetch the complete MCP server registry programmatically - ideal for AI applications, integrations, and automation:
186
186
 
187
187
  ```bash
188
- curl https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json
188
+ curl https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json
189
189
  ```
190
190
 
191
191
  ```ts
192
192
  // JavaScript/TypeScript - Fetch API
193
193
  const mcpServers = await (
194
- await fetch('https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json')
194
+ await fetch('https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json')
195
195
  ).json();
196
196
 
197
197
  // Use for AI agent tool discovery, LLM integrations, etc.
@@ -203,7 +203,7 @@ console.log(mcpServers);
203
203
  import requests
204
204
 
205
205
  mcp_servers = requests.get(
206
- 'https://toolsdk-ai.github.io/awesome-mcp-registry/indexes/packages-list.json'
206
+ 'https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json'
207
207
  ).json()
208
208
 
209
209
  # Perfect for LangChain, CrewAI, AutoGen integrations
@@ -239,9 +239,9 @@ Help grow the world's largest open-source MCP registry! Share your AI tools, plu
239
239
 
240
240
  **2. Submit via Pull Request**
241
241
 
242
- - [Fork this repository](https://github.com/toolsdk-ai/awesome-mcp-registry/fork)
242
+ - [Fork this repository](https://github.com/toolsdk-ai/toolsdk-mcp-registry/fork)
243
243
  - Create `your-mcp-server.json` in [packages/uncategorized](./packages/uncategorized)
244
- - Submit a PR and join 4108+ MCP servers!
244
+ - Submit a PR and join 4109+ MCP servers!
245
245
 
246
246
  **3. Get Discovered**
247
247
 
@@ -259,9 +259,9 @@ Your MCP server will be:
259
259
 
260
260
  ## 📋 MCP Servers Directory
261
261
 
262
- **4108+ AI Agent Tools, LLM Integrations & Automation Servers**
262
+ **4109+ AI Agent Tools, LLM Integrations & Automation Servers**
263
263
 
264
- - ✅ **Validated & Tested** (709) - Production-ready MCP servers
264
+ - ✅ **Validated & Tested** (710) - Production-ready MCP servers
265
265
  - ⚙️ **Community Contributed** (3399) - Requires configuration
266
266
 
267
267
  Browse by category: Developer Tools, AI Agents, Databases, Cloud Platforms, APIs, and more!
@@ -970,6 +970,7 @@ Run code securely, perfect for coding agents and AI-driven programming tasks.
970
970
  - [✅ node-code-sandbox-mcp](https://github.com/ssdeanx/node-code-sandbox-mcp): Provides a secure Docker-based environment for executing Node.js code with npm dependencies, shell commands, and file operations while maintaining proper isolation for testing and web development prototyping. (7 tools) (node)
971
971
  - [✅ nrepl-mcp-server](https://github.com/johancodinha/nrepl-mcp-server): Integrates with Clojure nREPL instances to enable code evaluation, namespace listing, and public var inspection for AI-assisted Clojure development. (3 tools) (node)
972
972
  - [✅ python-local](https://github.com/alec2435/python_mcp): Provides an interactive Python REPL environment for executing code within conversations, maintaining separate state for each session and supporting both expressions and statements. (1 tools) (python)
973
+ - [✅ sandock-mcp](https://github.com/sandock-ai/sandock): A Model Context Protocol server for running code in a secure sandbox by Sandock. (1 tools) (node)
973
974
  - [❌ @pydantic/mcp-run-python](https://github.com/pydantic/pydantic-ai/tree/HEAD/mcp-run-python): Provides a browser-compatible Python execution environment with package management capabilities for running code snippets safely without requiring a backend Python installation. (node)
974
975
  - [❌ @yepcode/mcp-server](https://github.com/yepcode/mcp-server-js): Enables secure execution of LLM-generated scripts and processes in isolated environments with environment variable management for teams needing to run code directly from AI assistants. (node)
975
976
  - [❌ ai-meta-tool-creator](https://github.com/alxspiker/ai-meta-mcp-server): Enables AI to dynamically create, execute, and manage custom tools in a secure sandbox environment for JavaScript, Python, or shell code with persistent storage capabilities. (node)
@@ -730,6 +730,7 @@
730
730
  "code-sandbox",
731
731
  "nostr-code-snippets",
732
732
  "python-repl",
733
+ "sandock-mcp",
733
734
  "@e2b/mcp-server",
734
735
  "pyodide-integration",
735
736
  "e2b-mcp-server",
@@ -47446,5 +47446,16 @@
47446
47446
  "path": "developer-tools/neurolink.json",
47447
47447
  "validated": false,
47448
47448
  "tools": {}
47449
+ },
47450
+ "sandock-mcp": {
47451
+ "category": "code-execution",
47452
+ "path": "code-execution/sandock-mcp.json",
47453
+ "validated": true,
47454
+ "tools": {
47455
+ "sandock_run_code": {
47456
+ "name": "sandock_run_code",
47457
+ "description": "Execute code (JavaScript, TypeScript, or Python) in an isolated sandbox environment"
47458
+ }
47459
+ }
47449
47460
  }
47450
47461
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.122",
3
+ "version": "1.0.124",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -615,6 +615,7 @@
615
615
  "resend-mcp": "0.1.2",
616
616
  "rss-reader-mcp": "1.0.3",
617
617
  "sandock": "^0.2.2",
618
+ "sandock-mcp": "0.1.0",
618
619
  "scrapeless-mcp-server": "0.3.0",
619
620
  "scraperis-mcp": "0.1.22",
620
621
  "search-stock-news-mcp": "1.0.12",
@@ -0,0 +1,15 @@
1
+ {
2
+ "type": "mcp-server",
3
+ "packageName": "sandock-mcp",
4
+ "description": "A Model Context Protocol server for running code in a secure sandbox by Sandock.",
5
+ "url": "https://github.com/sandock-ai/sandock",
6
+ "runtime": "node",
7
+ "license": "mit",
8
+ "env": {
9
+ "SANDOCK_API_KEY": {
10
+ "description": "API key for authenticating with the Sandock service.",
11
+ "required": true
12
+ }
13
+ },
14
+ "name": "Sandock MCP"
15
+ }