apple-notes-mcp 1.1.0 → 1.1.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/README.md +1 -1
- package/build/index.js +1 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ The AI assistant communicates with this server, which then uses AppleScript to i
|
|
|
22
22
|
|
|
23
23
|
### Using Claude Code (Easiest)
|
|
24
24
|
|
|
25
|
-
If you're using [Claude Code](https://
|
|
25
|
+
If you're using [Claude Code](https://claude.com/product/claude-code) (in Terminal or VS Code), just ask Claude to install it:
|
|
26
26
|
|
|
27
27
|
```
|
|
28
28
|
Install the apple-notes-mcp MCP server so you can help me manage my Apple Notes
|
package/build/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apple-notes-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server for Apple Notes - create, search, update, and manage notes via Claude",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"types": "build/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"apple-notes-mcp": "build/index.js"
|
|
10
|
+
},
|
|
8
11
|
"files": [
|
|
9
12
|
"build",
|
|
10
13
|
"README.md",
|