bear-notes-mcp 2.1.0 → 2.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 +4 -2
- package/dist/config.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -11,9 +11,11 @@ Want to use this Bear Notes MCP server with Claude Code, Cursor, Codex, or other
|
|
|
11
11
|
- **`bear-search-notes`** - Find notes by text content or tags, returns list with IDs for further actions
|
|
12
12
|
- **`bear-open-note`** - Read full content of a specific note including text, formatting, and metadata
|
|
13
13
|
- **`bear-create-note`** - Create new notes with optional title, content, and tags
|
|
14
|
-
- **`bear-add-text
|
|
15
|
-
- **`bear-add-text-prepend`** - Insert text at the beginning of existing notes or sections
|
|
14
|
+
- **`bear-add-text`** - Add text to an existing note at the beginning or end, optionally targeting a specific section
|
|
16
15
|
- **`bear-add-file`** - Attach files (images, PDFs, spreadsheets, etc.) to existing notes
|
|
16
|
+
- **`bear-list-tags`** - List all tags in your Bear library as a hierarchical tree with note counts
|
|
17
|
+
- **`bear-find-untagged-notes`** - Find notes that have no tags assigned
|
|
18
|
+
- **`bear-add-tag`** - Add one or more tags to an existing note
|
|
17
19
|
|
|
18
20
|
**Requirements**: Node.js 22.13.0+
|
|
19
21
|
|
package/dist/config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bear-notes-mcp",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Bear Notes MCP server with TypeScript and native SQLite",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
21
21
|
"debug": "^4.4.3",
|
|
22
22
|
"zod": "^3.25.76",
|
|
23
|
-
"zod-to-json-schema": "^3.
|
|
23
|
+
"zod-to-json-schema": "^3.25.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@anthropic-ai/mcpb": "^2.1.2",
|
|
27
27
|
"@types/debug": "^4.1.12",
|
|
28
28
|
"@types/node": "^24.10.4",
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
30
|
-
"@typescript-eslint/parser": "^8.
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
30
|
+
"@typescript-eslint/parser": "^8.51.0",
|
|
31
31
|
"eslint": "^9.39.2",
|
|
32
32
|
"eslint-plugin-import": "^2.32.0",
|
|
33
33
|
"prettier": "^3.7.4",
|