marble-headed-mcp 0.1.7 → 0.1.8
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -153,13 +153,14 @@ const TOOLS = [
|
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
name: 'headed_send_msg',
|
|
156
|
-
description: 'Send a chat message in the headed session and capture screenshots (returns links).',
|
|
156
|
+
description: 'Send a chat message in the headed session and capture screenshots (returns links). Supports waitForTutorStart.',
|
|
157
157
|
inputSchema: {
|
|
158
158
|
type: 'object',
|
|
159
159
|
properties: {
|
|
160
160
|
browserSessionId: { type: 'number' },
|
|
161
161
|
waitDuration: { type: 'number' },
|
|
162
162
|
screenshotInterval: { type: 'number' },
|
|
163
|
+
waitForTutorStart: { type: 'boolean' },
|
|
163
164
|
msg: { type: 'string' },
|
|
164
165
|
},
|
|
165
166
|
required: ['browserSessionId', 'waitDuration', 'screenshotInterval', 'msg'],
|