screenpipe-mcp 0.7.0 → 0.8.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Screenpipe MCP Server
2
2
 
3
- <a href="https://www.pulsemcp.com/servers/mediar-ai-screenpipe"><img src="https://www.pulsemcp.com/badge/top-pick/mediar-ai-screenpipe" width="400" alt="PulseMCP Badge"></a>
3
+ <a href="https://www.pulsemcp.com/servers/screenpipe-screenpipe"><img src="https://www.pulsemcp.com/badge/top-pick/screenpipe-screenpipe" width="400" alt="PulseMCP Badge"></a>
4
4
 
5
5
  <br/>
6
6
 
@@ -33,8 +33,8 @@ The easiest way to use screenpipe-mcp is with npx. Edit your Claude Desktop conf
33
33
  Clone and build from source:
34
34
 
35
35
  ```bash
36
- git clone https://github.com/mediar-ai/screenpipe
37
- cd screenpipe/screenpipe-integrations/screenpipe-mcp
36
+ git clone https://github.com/screenpipe/screenpipe
37
+ cd screenpipe/crates/screenpipe-integrations/screenpipe-mcp
38
38
  npm install
39
39
  npm run build
40
40
  ```
package/dist/index.js CHANGED
@@ -81,7 +81,11 @@ const BASE_TOOLS = [
81
81
  description: "Search screenpipe's recorded content: screen text (OCR), audio transcriptions, and UI elements. " +
82
82
  "Returns timestamped results with app context. " +
83
83
  "Call with no parameters to get recent activity. " +
84
- "Use the 'screenpipe://context' resource for current time when building time-based queries.",
84
+ "Use the 'screenpipe://context' resource for current time when building time-based queries.\n\n" +
85
+ "DEEP LINKS: When referencing specific moments in results, create clickable timeline links:\n" +
86
+ "Format: [readable time](screenpipe://timeline?timestamp=ISO8601_TIMESTAMP)\n" +
87
+ "Example: [10:30 AM](screenpipe://timeline?timestamp=2024-01-15T18:30:00Z)\n" +
88
+ "Users can click these links to jump directly to that moment in their timeline.",
85
89
  annotations: {
86
90
  title: "Search Content",
87
91
  readOnlyHint: true,
@@ -374,7 +378,19 @@ Screenpipe captures three types of data:
374
378
  1. Read screenpipe://context first to get current timestamps
375
379
  2. Use search-ui-events for "what did I type?" queries
376
380
  3. Use get-ui-event-stats to understand app usage patterns
377
- 4. Combine search-content (what was on screen) with search-ui-events (what was done)`,
381
+ 4. Combine search-content (what was on screen) with search-ui-events (what was done)
382
+
383
+ ## Timeline Deep Links
384
+ When showing search results to users, create clickable links to specific moments:
385
+
386
+ **Format:** \`[readable time](screenpipe://timeline?timestamp=ISO8601_TIMESTAMP)\`
387
+
388
+ **Examples:**
389
+ - \`[10:30 AM](screenpipe://timeline?timestamp=2024-01-15T18:30:00Z)\`
390
+ - \`[yesterday at 3pm](screenpipe://timeline?timestamp=2024-01-14T15:00:00Z)\`
391
+
392
+ Users can click these links to jump directly to that moment in their screenpipe timeline.
393
+ Always use the exact timestamp from search results when creating these links.`,
378
394
  },
379
395
  ],
380
396
  };
package/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": "0.3",
3
3
  "name": "screenpipe",
4
4
  "display_name": "Screenpipe",
5
- "version": "0.5.0",
5
+ "version": "0.8.0",
6
6
  "description": "Search your screen recordings and audio transcriptions with AI",
7
7
  "long_description": "Screenpipe is a 24/7 screen and audio recorder that lets you search everything you've seen or heard. This extension connects Claude to your local screenpipe instance, enabling AI-powered search through your digital memory.",
8
8
  "author": {
@@ -11,11 +11,11 @@
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
- "url": "https://github.com/mediar-ai/screenpipe"
14
+ "url": "https://github.com/screenpipe/screenpipe"
15
15
  },
16
16
  "homepage": "https://screenpi.pe",
17
- "documentation": "https://github.com/mediar-ai/screenpipe/tree/main/screenpipe-integrations/screenpipe-mcp",
18
- "support": "https://github.com/mediar-ai/screenpipe/issues",
17
+ "documentation": "https://github.com/screenpipe/screenpipe/tree/main/crates/screenpipe-integrations/screenpipe-mcp",
18
+ "support": "https://github.com/screenpipe/screenpipe/issues",
19
19
  "license": "MIT",
20
20
  "server": {
21
21
  "type": "node",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screenpipe-mcp",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "MCP server for screenpipe - search your screen recordings and audio transcriptions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -64,7 +64,11 @@ const BASE_TOOLS: Tool[] = [
64
64
  "Search screenpipe's recorded content: screen text (OCR), audio transcriptions, and UI elements. " +
65
65
  "Returns timestamped results with app context. " +
66
66
  "Call with no parameters to get recent activity. " +
67
- "Use the 'screenpipe://context' resource for current time when building time-based queries.",
67
+ "Use the 'screenpipe://context' resource for current time when building time-based queries.\n\n" +
68
+ "DEEP LINKS: When referencing specific moments in results, create clickable timeline links:\n" +
69
+ "Format: [readable time](screenpipe://timeline?timestamp=ISO8601_TIMESTAMP)\n" +
70
+ "Example: [10:30 AM](screenpipe://timeline?timestamp=2024-01-15T18:30:00Z)\n" +
71
+ "Users can click these links to jump directly to that moment in their timeline.",
68
72
  annotations: {
69
73
  title: "Search Content",
70
74
  readOnlyHint: true,
@@ -369,7 +373,19 @@ Screenpipe captures three types of data:
369
373
  1. Read screenpipe://context first to get current timestamps
370
374
  2. Use search-ui-events for "what did I type?" queries
371
375
  3. Use get-ui-event-stats to understand app usage patterns
372
- 4. Combine search-content (what was on screen) with search-ui-events (what was done)`,
376
+ 4. Combine search-content (what was on screen) with search-ui-events (what was done)
377
+
378
+ ## Timeline Deep Links
379
+ When showing search results to users, create clickable links to specific moments:
380
+
381
+ **Format:** \`[readable time](screenpipe://timeline?timestamp=ISO8601_TIMESTAMP)\`
382
+
383
+ **Examples:**
384
+ - \`[10:30 AM](screenpipe://timeline?timestamp=2024-01-15T18:30:00Z)\`
385
+ - \`[yesterday at 3pm](screenpipe://timeline?timestamp=2024-01-14T15:00:00Z)\`
386
+
387
+ Users can click these links to jump directly to that moment in their screenpipe timeline.
388
+ Always use the exact timestamp from search results when creating these links.`,
373
389
  },
374
390
  ],
375
391
  };