-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "clipsnap-mcp",
"version": "1.0.0",
"description": "Fix broken Ctrl+V image paste in iTerm2 and Terminal.app for AI coding tools. MCP server with Swift clipboard watcher that bypasses sandbox-exec, ENOBUFS, and race condition bugs. Works with Claude Code, Codex CLI, Gemini CLI, Cursor.",
"type": "module",
"main": "dist/index.js",
"bin": {
"clipsnap-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && cd watcher && swift build -c release 2>&1 || true",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"clipboard",
"image",
"paste",
"screenshot",
"iterm2",
"claude-code",
"codex-cli",
"gemini-cli",
"cursor",
"terminal",
"macos",
"pngpaste",
"osascript",
"nspasteboard",
"clipboard-watcher",
"ai-tools",
"developer-tools"
],
"author": "Aleksei Zelentsov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zelentsov-dev/clipsnap-mcp.git"
},
"homepage": "https://github.com/zelentsov-dev/clipsnap-mcp#readme",
"bugs": {
"url": "https://github.com/zelentsov-dev/clipsnap-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0"
},
"peerDependencies": {
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"zod": "^3.25.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"watcher/Package.swift",
"watcher/Sources"
]
}