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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. 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'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marble-headed-mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "MCP server for Marble headed automation endpoints",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",