@toolsdk.ai/registry 1.0.127 → 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.
@@ -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": "^1.12.0",
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,27 +47454,27 @@
47454
47454
  "tools": {
47455
47455
  "sandock_run_code": {
47456
47456
  "name": "sandock_run_code",
47457
- "description": "Execute code (JavaScript, TypeScript, or Python) in an isolated sandbox environment. Output results using console.log() for JS/TS or print() for Python."
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
47458
  },
47459
47459
  "sandock_create_sandbox": {
47460
47460
  "name": "sandock_create_sandbox",
47461
- "description": "Create a new isolated sandbox environment for running code and commands. Returns a sandboxId that must be used in subsequent operations. Remember to delete the sandbox when done to prevent resource leaks."
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
47462
  },
47463
47463
  "sandock_shell_exec": {
47464
47464
  "name": "sandock_shell_exec",
47465
- "description": "Execute shell commands in the sandbox. Use for file operations (unzip, tar, grep, cat, ls), system commands, or running installed tools. The sandbox has common Linux utilities pre-installed."
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
47466
  },
47467
47467
  "sandock_write_file": {
47468
47468
  "name": "sandock_write_file",
47469
- "description": "Write text content to a file in the sandbox. Use for creating scripts, configuration files, or text data. For binary files (ZIP, images), use sandock_download_file instead."
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
47470
  },
47471
47471
  "sandock_download_file": {
47472
47472
  "name": "sandock_download_file",
47473
- "description": "Download a file from a URL into the sandbox. Use for importing user-uploaded files (ZIP, CSV, images, etc.). The file content never passes through the agent, avoiding token consumption. Supports large files."
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
47474
  },
47475
47475
  "sandock_delete_sandbox": {
47476
47476
  "name": "sandock_delete_sandbox",
47477
- "description": "Delete a sandbox and free resources. Always call this when you're done with a sandbox to prevent resource leaks and avoid unnecessary charges."
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)."
47478
47478
  }
47479
47479
  }
47480
47480
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.127",
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": "^1.12.0",
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.2.0",
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",