screenpipe-mcp 0.12.0 → 0.13.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/dist/index.js CHANGED
@@ -53,10 +53,13 @@ for (let i = 0; i < args.length; i++) {
53
53
  }
54
54
  }
55
55
  const SCREENPIPE_API = `http://localhost:${port}`;
56
+ // Read version from package.json (single source of truth)
57
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
58
+ const PKG_VERSION = require("../package.json").version;
56
59
  // Initialize server
57
60
  const server = new index_js_1.Server({
58
61
  name: "screenpipe",
59
- version: "0.9.0",
62
+ version: PKG_VERSION,
60
63
  }, {
61
64
  capabilities: {
62
65
  tools: {},
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.8.4",
5
+ "version": "0.0.0-injected-from-package-json",
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": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screenpipe-mcp",
3
- "version": "0.12.0",
3
+ "version": "0.13.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
@@ -28,11 +28,15 @@ for (let i = 0; i < args.length; i++) {
28
28
 
29
29
  const SCREENPIPE_API = `http://localhost:${port}`;
30
30
 
31
+ // Read version from package.json (single source of truth)
32
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
33
+ const PKG_VERSION: string = require("../package.json").version;
34
+
31
35
  // Initialize server
32
36
  const server = new Server(
33
37
  {
34
38
  name: "screenpipe",
35
- version: "0.9.0",
39
+ version: PKG_VERSION,
36
40
  },
37
41
  {
38
42
  capabilities: {