remnote-mcp-server 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +49 -4
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.3] - 2026-02-07
11
+
12
+ ### Added
13
+
14
+ - Demo documentation with screenshot showing Claude Code searching RemNote via MCP Bridge & Server
15
+ - New `docs/demo.md` with visual demonstration
16
+ - Demo section in README.md with preview image
17
+ - Screenshot file: `docs/remnote-mcp-server-demo.jpg`
18
+ - npm package badge in README.md linking to npm registry page
19
+ - npm installation instructions as recommended installation method in README.md
20
+ - Global installation via `npm install -g remnote-mcp-server`
21
+ - Uninstall instructions for both npm and source installations
22
+ - Enhanced troubleshooting section covering both npm and source installation methods
23
+
10
24
  ## [0.1.2] - 2026-02-07
11
25
 
12
26
  ### Added
package/README.md CHANGED
@@ -1,10 +1,15 @@
1
1
  # RemNote MCP Server
2
2
 
3
3
  [![CI](https://github.com/robert7/remnote-mcp-server/actions/workflows/ci.yml/badge.svg)](https://github.com/robert7/remnote-mcp-server/actions/workflows/ci.yml)
4
+ [![npm version](https://img.shields.io/npm/v/remnote-mcp-server.svg)](https://www.npmjs.com/package/remnote-mcp-server)
4
5
 
5
6
  MCP server that bridges Claude Code (and other MCP clients) to [RemNote](https://remnote.com/) via the [RemNote MCP
6
7
  Bridge plugin](https://github.com/robert7/remnote-mcp-bridge).
7
8
 
9
+ ## Demo
10
+
11
+ See Claude Code in action with RemNote: **[View Demo →](docs/demo.md)**
12
+
8
13
  ## What is This?
9
14
 
10
15
  The RemNote MCP Server enables AI assistants like Claude Code to interact directly with your RemNote knowledge base
@@ -78,7 +83,25 @@ WebSocket bridge to RemNote.
78
83
 
79
84
  ### 1. Install the MCP Server
80
85
 
81
- **From source (recommended for development):**
86
+ **From npm (recommended for most users):**
87
+
88
+ ```bash
89
+ # Install globally
90
+ npm install -g remnote-mcp-server
91
+
92
+ # Verify installation
93
+ which remnote-mcp-server
94
+ # Should output: /path/to/node/bin/remnote-mcp-server
95
+ ```
96
+
97
+ **Uninstalling:**
98
+
99
+ ```bash
100
+ # Remove global installation
101
+ npm uninstall -g remnote-mcp-server
102
+ ```
103
+
104
+ **From source (for development):**
82
105
 
83
106
  ```bash
84
107
  git clone https://github.com/robert7/remnote-mcp-server.git
@@ -101,6 +124,21 @@ executable, allowing Claude Code to launch `remnote-mcp-server` from anywhere wi
101
124
  uses a different Node.js version or environment (e.g., different shell PATH), it won't find the command. Ensure your
102
125
  shell configuration (`.bashrc`, `.zshrc`) properly exposes your Node.js environment.
103
126
 
127
+ **Unlinking the source installation:**
128
+
129
+ When you no longer want the global `remnote-mcp-server` command to point to your local repository:
130
+
131
+ ```bash
132
+ # Remove the global symlink
133
+ npm unlink -g remnote-mcp-server
134
+
135
+ # Verify it's removed
136
+ which remnote-mcp-server
137
+ # Should output nothing if successfully unlinked
138
+ ```
139
+
140
+ After unlinking, you can install the published npm package globally with `npm install -g remnote-mcp-server` if needed.
141
+
104
142
  **About stdio transport**
105
143
 
106
144
  This MCP server uses [stdio transport](https://modelcontextprotocol.io/specification/2025-06-18/basic/transports#stdio),
@@ -341,13 +379,20 @@ Configure in the plugin control panel:
341
379
 
342
380
  ### Server Not Starting
343
381
 
344
- 1. **Check if globally linked:**
382
+ 1. **Check if installed globally:**
345
383
  ```bash
346
384
  which remnote-mcp-server
347
385
  ```
348
- Should return a path to the executable.
386
+ Should return a path to the executable.
387
+
388
+ 2. **Reinstall if needed:**
389
+
390
+ **For npm installation:**
391
+ ```bash
392
+ npm install -g remnote-mcp-server
393
+ ```
349
394
 
350
- 2. **Re-link if needed:**
395
+ **For source installation:**
351
396
  ```bash
352
397
  cd ~/Projects/_private/remnote-mcp-server
353
398
  npm link
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remnote-mcp-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server bridge for RemNote knowledge base",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",