bear-notes-mcp 2.8.1 → 2.8.2

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 CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Search, read, create, and update your Bear Notes from any AI assistant.
4
4
 
5
- **Full documentation and source code: [claude-desktop-extension-bear-notes](https://github.com/vasylenko/claude-desktop-extension-bear-notes)**
5
+ **Full documentation and source code: [bear-notes-mcp](https://github.com/vasylenko/bear-notes-mcp)**
6
6
 
7
7
  ## Key Features
8
8
 
9
- - **10 MCP tools** for full Bear Notes integration
9
+ - **12 MCP tools** for full Bear Notes integration
10
10
  - **OCR search** across images and PDFs attached to notes
11
11
  - **Date-based search** with relative dates ("yesterday", "last week", etc.)
12
12
  - **Configurable new note convention** for tag placement (opt-in)
@@ -83,8 +83,8 @@ Example with configuration:
83
83
 
84
84
  **Step 1: Clone and build**
85
85
  ```bash
86
- git clone https://github.com/vasylenko/claude-desktop-extension-bear-notes.git
87
- cd claude-desktop-extension-bear-notes
86
+ git clone https://github.com/vasylenko/bear-notes-mcp.git
87
+ cd bear-notes-mcp
88
88
  npm install
89
89
  npm run build
90
90
  ```
package/dist/config.js CHANGED
@@ -1,4 +1,4 @@
1
- export const APP_VERSION = '2.8.1';
1
+ export const APP_VERSION = '2.8.2';
2
2
  export const BEAR_URL_SCHEME = 'bear://x-callback-url/';
3
3
  export const CORE_DATA_EPOCH_OFFSET = 978307200; // 2001-01-01 to Unix epoch
4
4
  export const DEFAULT_SEARCH_LIMIT = 50;
package/dist/main.js CHANGED
@@ -262,7 +262,7 @@ server.registerTool('bear-add-text', {
262
262
  });
263
263
  server.registerTool('bear-replace-text', {
264
264
  title: 'Replace Note Content',
265
- description: 'Replace content in an existing Bear note — either the full body or a specific section. Requires content replacement to be enabled in extension settings. Use bear-search-notes first to get the note ID. To add text without replacing existing content use bear-add-text instead.',
265
+ description: 'Replace content in an existing Bear note — either the full body or a specific section. Requires content replacement to be enabled in settings. Use bear-search-notes first to get the note ID. To add text without replacing existing content use bear-add-text instead.',
266
266
  inputSchema: {
267
267
  id: z
268
268
  .string()
@@ -293,7 +293,7 @@ server.registerTool('bear-replace-text', {
293
293
  if (!ENABLE_CONTENT_REPLACEMENT) {
294
294
  return createToolResponse(`Content replacement is not enabled.
295
295
 
296
- To use replace mode, enable "Content Replacement" in the Bear Notes extension settings.`);
296
+ To use replace mode, enable "Content Replacement" in the Bear Notes server settings.`);
297
297
  }
298
298
  if (scope === 'section' && !header) {
299
299
  return createToolResponse(`scope is "section" but no header was provided.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bear-notes-mcp",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
4
4
  "description": "Bear Notes MCP server with TypeScript and native SQLite",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -49,7 +49,9 @@
49
49
  "notes management",
50
50
  "productivity",
51
51
  "typescript",
52
- "mcp"
52
+ "mcp",
53
+ "mcp-server",
54
+ "ai-assistant"
53
55
  ],
54
56
  "author": {
55
57
  "name": "Serhii Vasylenko",
@@ -59,12 +61,12 @@
59
61
  "license": "MIT",
60
62
  "repository": {
61
63
  "type": "git",
62
- "url": "git+https://github.com/vasylenko/claude-desktop-extension-bear-notes.git"
64
+ "url": "git+https://github.com/vasylenko/bear-notes-mcp.git"
63
65
  },
64
66
  "bugs": {
65
- "url": "https://github.com/vasylenko/claude-desktop-extension-bear-notes/issues"
67
+ "url": "https://github.com/vasylenko/bear-notes-mcp/issues"
66
68
  },
67
- "homepage": "https://github.com/vasylenko/claude-desktop-extension-bear-notes#readme",
69
+ "homepage": "https://github.com/vasylenko/bear-notes-mcp#readme",
68
70
  "bin": {
69
71
  "bear-notes-mcp": "dist/main.js"
70
72
  },