screenpipe-mcp 0.18.7 → 0.18.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/README.md +1 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
- package/src/index.ts +3 -1
package/README.md
CHANGED
|
@@ -148,7 +148,7 @@ Get a lightweight compressed activity overview for a time range:
|
|
|
148
148
|
- Audio speaker summary
|
|
149
149
|
|
|
150
150
|
### list-meetings
|
|
151
|
-
List detected meetings with duration, app, and attendees.
|
|
151
|
+
List detected meetings with duration, app, and attendees. Pass `q` to filter by substring (title, attendees, notes).
|
|
152
152
|
|
|
153
153
|
### search-elements
|
|
154
154
|
Search structured UI elements (accessibility tree nodes and OCR text blocks):
|
package/dist/index.js
CHANGED
|
@@ -326,13 +326,15 @@ const TOOLS = [
|
|
|
326
326
|
{
|
|
327
327
|
name: "list-meetings",
|
|
328
328
|
description: "List detected meetings (Zoom, Teams, Meet, etc.) with duration, app, and attendees. " +
|
|
329
|
-
"Only available when screenpipe runs in smart transcription mode."
|
|
329
|
+
"Only available when screenpipe runs in smart transcription mode. " +
|
|
330
|
+
"Pass `q` to filter by substring match against title, attendees, and notes (e.g. an email or name).",
|
|
330
331
|
annotations: { title: "List Meetings", readOnlyHint: true, openWorldHint: false, idempotentHint: true },
|
|
331
332
|
inputSchema: {
|
|
332
333
|
type: "object",
|
|
333
334
|
properties: {
|
|
334
335
|
start_time: { type: "string", description: "ISO 8601 UTC or relative (e.g. '1d ago')" },
|
|
335
336
|
end_time: { type: "string", description: "ISO 8601 UTC or relative" },
|
|
337
|
+
q: { type: "string", description: "Case-insensitive substring filter on title, attendees, and note" },
|
|
336
338
|
limit: { type: "integer", description: "Max results (default 20)", default: 20 },
|
|
337
339
|
offset: { type: "integer", description: "Pagination offset", default: 0 },
|
|
338
340
|
},
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -314,13 +314,15 @@ const TOOLS: Tool[] = [
|
|
|
314
314
|
name: "list-meetings",
|
|
315
315
|
description:
|
|
316
316
|
"List detected meetings (Zoom, Teams, Meet, etc.) with duration, app, and attendees. " +
|
|
317
|
-
"Only available when screenpipe runs in smart transcription mode."
|
|
317
|
+
"Only available when screenpipe runs in smart transcription mode. " +
|
|
318
|
+
"Pass `q` to filter by substring match against title, attendees, and notes (e.g. an email or name).",
|
|
318
319
|
annotations: { title: "List Meetings", readOnlyHint: true, openWorldHint: false, idempotentHint: true },
|
|
319
320
|
inputSchema: {
|
|
320
321
|
type: "object",
|
|
321
322
|
properties: {
|
|
322
323
|
start_time: { type: "string", description: "ISO 8601 UTC or relative (e.g. '1d ago')" },
|
|
323
324
|
end_time: { type: "string", description: "ISO 8601 UTC or relative" },
|
|
325
|
+
q: { type: "string", description: "Case-insensitive substring filter on title, attendees, and note" },
|
|
324
326
|
limit: { type: "integer", description: "Max results (default 20)", default: 20 },
|
|
325
327
|
offset: { type: "integer", description: "Pagination offset", default: 0 },
|
|
326
328
|
},
|