@thenavidm/apple-photos-mcp-cli 1.0.0 → 1.0.1
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/package.json +32 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thenavidm/apple-photos-mcp-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Apple Photos MCP server and CLI for Claude Code and AI agents. 13 tools to search, look at, organise and export your own Photos library, entirely on your Mac.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
"apple-photos-mcp": "dist/index.js",
|
|
9
9
|
"apple-photos-cli": "dist/index.js"
|
|
10
10
|
},
|
|
11
|
-
"engines": {
|
|
12
|
-
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=20"
|
|
13
|
+
},
|
|
13
14
|
"scripts": {
|
|
14
15
|
"build": "tsc",
|
|
15
16
|
"test": "vitest run",
|
|
@@ -28,8 +29,32 @@
|
|
|
28
29
|
"license": "MIT",
|
|
29
30
|
"author": "Navid Moazzez (https://navid.me)",
|
|
30
31
|
"homepage": "https://navid.me",
|
|
31
|
-
"repository": {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/navidmoazzez/apple-photos-mcp.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/navidmoazzez/apple-photos-mcp/issues"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"mcp",
|
|
41
|
+
"model-context-protocol",
|
|
42
|
+
"apple-photos",
|
|
43
|
+
"photos",
|
|
44
|
+
"macos",
|
|
45
|
+
"mcp-server",
|
|
46
|
+
"claude",
|
|
47
|
+
"claude-code",
|
|
48
|
+
"ai-agents",
|
|
49
|
+
"llm-tools",
|
|
50
|
+
"cli"
|
|
51
|
+
],
|
|
52
|
+
"files": [
|
|
53
|
+
"dist",
|
|
54
|
+
"src",
|
|
55
|
+
"pyproject.toml",
|
|
56
|
+
"README.md",
|
|
57
|
+
"SKILL.md",
|
|
58
|
+
"LICENSE"
|
|
59
|
+
]
|
|
35
60
|
}
|