sublime-mcp 1.2.5 → 1.2.6
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -378,12 +378,12 @@ server.registerTool('get_console_log', {
|
|
|
378
378
|
}, async ({ tail }) => ok(await get('/console_log', { tail })));
|
|
379
379
|
|
|
380
380
|
server.registerTool('get_console_full', {
|
|
381
|
-
description: '
|
|
381
|
+
description: 'Return the entire captured ST console buffer with no tail limit.\nIncludes startup messages, plugin load events, and all errors since ST started.\nUse this when get_console_log (tail=N) does not show enough history.',
|
|
382
382
|
inputSchema: {},
|
|
383
383
|
}, async () => ok(await get('/console_full')));
|
|
384
384
|
|
|
385
385
|
server.registerTool('eval_python_latest', {
|
|
386
|
-
description: "Execute Python code using the system Python
|
|
386
|
+
description: "Execute Python code using the system Python interpreter outside Sublime Text's embedded sandbox.\nUseful for newer stdlib features or third-party packages not available in ST's embedded Python.\nReturns stdout, stderr, and returncode.",
|
|
387
387
|
inputSchema: { code: z.string() },
|
|
388
388
|
}, async ({ code }) => ok(await post('/eval_python_latest', { code })));
|
|
389
389
|
|
package/package.json
CHANGED