@toolsdk.ai/registry 1.0.126 → 1.0.128
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
|
@@ -970,7 +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. (
|
|
973
|
+
- [✅ sandock-mcp](https://github.com/sandock-ai/sandock): A Model Context Protocol server for running code in a secure sandbox by Sandock. (6 tools) (node)
|
|
974
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)
|
|
975
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)
|
|
976
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)
|
|
@@ -7,7 +7,7 @@ export function updatePackageJsonDependencies({ packageDeps, enableValidation =
|
|
|
7
7
|
const newDeps = {
|
|
8
8
|
"@daytonaio/sdk": "0.109.0",
|
|
9
9
|
"@e2b/code-interpreter": "^2.0.0",
|
|
10
|
-
"@modelcontextprotocol/sdk": "
|
|
10
|
+
"@modelcontextprotocol/sdk": "1.21.1",
|
|
11
11
|
"@hono/node-server": "1.15.0",
|
|
12
12
|
"@hono/swagger-ui": "^0.5.2",
|
|
13
13
|
"@hono/zod-openapi": "^0.16.4",
|
|
@@ -47454,7 +47454,27 @@
|
|
|
47454
47454
|
"tools": {
|
|
47455
47455
|
"sandock_run_code": {
|
|
47456
47456
|
"name": "sandock_run_code",
|
|
47457
|
-
"description": "Execute code
|
|
47457
|
+
"description": "Execute Python code in a fresh, temporary sandbox. Each call creates a NEW sandbox - no context preserved between calls. Best for simple, self-contained tasks. Use print() for output. Auto-cleanup after execution. Environment: Python 3.11 on Debian Linux. Pre-installed packages (no pip install needed): numpy, pandas, requests, httpx, beautifulsoup4, lxml, openpyxl, python-docx, PyPDF2, pypdf, pillow, aiohttp, aiofiles, pyyaml, python-dotenv, chardet, jsonschema, pytz, python-dateutil."
|
|
47458
|
+
},
|
|
47459
|
+
"sandock_create_sandbox": {
|
|
47460
|
+
"name": "sandock_create_sandbox",
|
|
47461
|
+
"description": "Create a persistent sandbox that preserves context across multiple commands. Use when you need to: download files and process them, install packages and use them, or run multi-step workflows. Returns sandboxId. Must call sandock_delete_sandbox when done. Environment: Python 3.11 on Debian Linux. Pre-installed packages (no pip install needed): numpy, pandas, requests, httpx, beautifulsoup4, lxml, openpyxl, python-docx, PyPDF2, pypdf, pillow, aiohttp, aiofiles, pyyaml, python-dotenv, chardet, jsonschema, pytz, python-dateutil."
|
|
47462
|
+
},
|
|
47463
|
+
"sandock_shell_exec": {
|
|
47464
|
+
"name": "sandock_shell_exec",
|
|
47465
|
+
"description": "Execute shell commands in a persistent sandbox. Context is preserved - files, installed packages, and changes persist. Requires sandboxId from sandock_create_sandbox. Environment: Python 3.11 on Debian Linux (standard Linux commands available). Pre-installed Python packages (no pip install needed): numpy, pandas, requests, httpx, beautifulsoup4, lxml, openpyxl, python-docx, PyPDF2, pypdf, pillow, aiohttp, aiofiles, pyyaml, python-dotenv, chardet, jsonschema, pytz, python-dateutil."
|
|
47466
|
+
},
|
|
47467
|
+
"sandock_write_file": {
|
|
47468
|
+
"name": "sandock_write_file",
|
|
47469
|
+
"description": "Write text content to a file in a persistent sandbox. File persists for later use. Requires sandboxId from sandock_create_sandbox. Use for scripts, config files, text data. For binary files, use sandock_download_file."
|
|
47470
|
+
},
|
|
47471
|
+
"sandock_download_file": {
|
|
47472
|
+
"name": "sandock_download_file",
|
|
47473
|
+
"description": "Download a file from URL into a persistent sandbox for later processing. File persists and can be processed in subsequent commands. Requires sandboxId from sandock_create_sandbox. Efficient for large files (content doesn't pass through agent)."
|
|
47474
|
+
},
|
|
47475
|
+
"sandock_delete_sandbox": {
|
|
47476
|
+
"name": "sandock_delete_sandbox",
|
|
47477
|
+
"description": "Delete a persistent sandbox and free resources. Call when finished with sandboxes created via sandock_create_sandbox. (sandock_run_code auto-cleans, no need to call this)."
|
|
47458
47478
|
}
|
|
47459
47479
|
}
|
|
47460
47480
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolsdk.ai/registry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.128",
|
|
4
4
|
"description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
"@missionsquad/mcp-helper-tools": "1.1.1",
|
|
238
238
|
"@mjpitz/mcp-rfc": "0.2504.4",
|
|
239
239
|
"@mobilenext/mobile-mcp": "0.0.23",
|
|
240
|
-
"@modelcontextprotocol/sdk": "
|
|
240
|
+
"@modelcontextprotocol/sdk": "1.21.1",
|
|
241
241
|
"@modelcontextprotocol/server-aws-kb-retrieval": "0.6.2",
|
|
242
242
|
"@modelcontextprotocol/server-brave-search": "0.6.2",
|
|
243
243
|
"@modelcontextprotocol/server-everything": "2025.5.12",
|
|
@@ -615,7 +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
|
|
618
|
+
"sandock-mcp": "0.3.1",
|
|
619
619
|
"scrapeless-mcp-server": "0.3.0",
|
|
620
620
|
"scraperis-mcp": "0.1.22",
|
|
621
621
|
"search-stock-news-mcp": "1.0.12",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "mcp-server",
|
|
3
|
-
"logo": "https://
|
|
3
|
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Microsoft_Office_Teams_%282019%E2%80%932025%29.svg/512px-Microsoft_Office_Teams_%282019%E2%80%932025%29.svg.png?20210603103011",
|
|
4
4
|
"packageName": "@floriscornel/teams-mcp",
|
|
5
5
|
"description": "Integrates with Microsoft Teams through Graph API to search messages, manage chats and channels, send messages, create group chats, and handle user/team operations with device code authentication for secure access.",
|
|
6
6
|
"url": "https://github.com/floriscornel/teams-mcp",
|
|
@@ -4,7 +4,12 @@
|
|
|
4
4
|
"description": "Connects to Context7.com's documentation database to provide up-to-date library and framework documentation with intelligent project ranking and customizable token limits.",
|
|
5
5
|
"url": "https://github.com/upstash/context7",
|
|
6
6
|
"runtime": "node",
|
|
7
|
-
"license": "
|
|
8
|
-
"env": {
|
|
7
|
+
"license": "mit",
|
|
8
|
+
"env": {
|
|
9
|
+
"CONTEXT7_API_KEY": {
|
|
10
|
+
"description": "your-context7-api-key",
|
|
11
|
+
"required": true
|
|
12
|
+
}
|
|
13
|
+
},
|
|
9
14
|
"name": "Context7 MCP"
|
|
10
15
|
}
|