@justanothermldude/mcp-exec 1.0.1 → 1.0.2

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
@@ -218,14 +218,14 @@ const { server, listToolsHandler, callToolHandler, shutdown } = createMcpExecSer
218
218
 
219
219
  // List available tools
220
220
  const tools = await listToolsHandler();
221
- // => { tools: [{ name: 'execute_code', inputSchema: {...} }] }
221
+ // => { tools: [{ name: 'execute_code_with_wrappers', ... }, ...] }
222
222
 
223
- // Call execute_code tool
223
+ // Call execute_code_with_wrappers tool
224
224
  const result = await callToolHandler({
225
- name: 'execute_code',
225
+ name: 'execute_code_with_wrappers',
226
226
  arguments: {
227
227
  code: 'console.log("Hello!")',
228
- timeout_ms: 5000,
228
+ wrappers: [], // optional: MCP server names to generate typed wrappers for
229
229
  },
230
230
  });
231
231
 
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justanothermldude/mcp-exec",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP execution utilities for sandboxed code execution with OS-level isolation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",