screenpipe-mcp 0.5.0 → 0.7.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 +30 -20
- package/dist/index.js +158 -489
- package/manifest.json +3 -31
- package/package.json +2 -2
- package/src/index.ts +159 -521
package/manifest.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"name": "screenpipe",
|
|
4
4
|
"display_name": "Screenpipe",
|
|
5
5
|
"version": "0.5.0",
|
|
6
|
-
"description": "Search your screen recordings
|
|
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
|
|
6
|
+
"description": "Search your screen recordings and audio transcriptions with AI",
|
|
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": {
|
|
9
9
|
"name": "screenpipe",
|
|
10
10
|
"url": "https://screenpi.pe"
|
|
@@ -28,39 +28,11 @@
|
|
|
28
28
|
"tools": [
|
|
29
29
|
{
|
|
30
30
|
"name": "search-content",
|
|
31
|
-
"description": "Search through recorded screen content, audio transcriptions, and UI elements"
|
|
31
|
+
"description": "Search through recorded screen content, audio transcriptions, and UI elements with speaker filtering"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"name": "export-video",
|
|
35
35
|
"description": "Export screen recordings as MP4 video for a specific time range"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"name": "pixel-control",
|
|
39
|
-
"description": "Control mouse and keyboard (type text, press keys, move mouse, click)"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"name": "find-elements",
|
|
43
|
-
"description": "Find UI elements in applications by role (macOS only)"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"name": "click-element",
|
|
47
|
-
"description": "Click UI elements by ID (macOS only)"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"name": "fill-element",
|
|
51
|
-
"description": "Type text into UI elements (macOS only)"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"name": "scroll-element",
|
|
55
|
-
"description": "Scroll UI elements (macOS only)"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "open-application",
|
|
59
|
-
"description": "Open applications by name (macOS only)"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"name": "open-url",
|
|
63
|
-
"description": "Open URLs in browser (macOS only)"
|
|
64
36
|
}
|
|
65
37
|
],
|
|
66
38
|
"compatibility": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "screenpipe-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for screenpipe - search your screen recordings
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "MCP server for screenpipe - search your screen recordings and audio transcriptions",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"screenpipe-mcp": "dist/index.js"
|