@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 +4 -4
- package/dist/index.js +0 -0
- package/package.json +1 -1
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: '
|
|
221
|
+
// => { tools: [{ name: 'execute_code_with_wrappers', ... }, ...] }
|
|
222
222
|
|
|
223
|
-
// Call
|
|
223
|
+
// Call execute_code_with_wrappers tool
|
|
224
224
|
const result = await callToolHandler({
|
|
225
|
-
name: '
|
|
225
|
+
name: 'execute_code_with_wrappers',
|
|
226
226
|
arguments: {
|
|
227
227
|
code: 'console.log("Hello!")',
|
|
228
|
-
|
|
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
|