screenpipe-mcp 0.2.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 +103 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +717 -0
- package/manifest.json +58 -0
- package/package.json +38 -0
- package/src/index.ts +799 -0
- package/tsconfig.json +17 -0
package/manifest.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "screenpipe",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Search your screen recordings, audio transcriptions, and control your computer with AI",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Mediar AI",
|
|
7
|
+
"url": "https://screenpi.pe"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/mediar-ai/screenpipe"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"server": {
|
|
15
|
+
"type": "node",
|
|
16
|
+
"entry": "dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"tools": [
|
|
19
|
+
{
|
|
20
|
+
"name": "search-content",
|
|
21
|
+
"description": "Search through recorded screen content, audio transcriptions, and UI elements"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "pixel-control",
|
|
25
|
+
"description": "Control mouse and keyboard (type text, press keys, move mouse, click)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "find-elements",
|
|
29
|
+
"description": "Find UI elements in applications by role (macOS only)"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "click-element",
|
|
33
|
+
"description": "Click UI elements by ID (macOS only)"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "fill-element",
|
|
37
|
+
"description": "Type text into UI elements (macOS only)"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "scroll-element",
|
|
41
|
+
"description": "Scroll UI elements (macOS only)"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "open-application",
|
|
45
|
+
"description": "Open applications by name (macOS only)"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "open-url",
|
|
49
|
+
"description": "Open URLs in browser (macOS only)"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"requirements": {
|
|
53
|
+
"screenpipe": "Requires screenpipe to be running on localhost:3030"
|
|
54
|
+
},
|
|
55
|
+
"icon": "icon.png",
|
|
56
|
+
"categories": ["productivity", "automation", "search"],
|
|
57
|
+
"keywords": ["screen-recording", "ocr", "audio-transcription", "automation", "memory"]
|
|
58
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "screenpipe-mcp",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "MCP server for screenpipe - search your screen recordings, audio transcriptions, and control your computer",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"screenpipe-mcp": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"start": "node dist/index.js",
|
|
12
|
+
"dev": "ts-node src/index.ts",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mcp",
|
|
17
|
+
"screenpipe",
|
|
18
|
+
"model-context-protocol",
|
|
19
|
+
"claude",
|
|
20
|
+
"ai",
|
|
21
|
+
"screen-recording",
|
|
22
|
+
"ocr",
|
|
23
|
+
"audio-transcription"
|
|
24
|
+
],
|
|
25
|
+
"author": "Mediar AI",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^20.0.0",
|
|
32
|
+
"typescript": "^5.0.0",
|
|
33
|
+
"ts-node": "^10.9.0"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18.0.0"
|
|
37
|
+
}
|
|
38
|
+
}
|