reflect-mcp 1.0.11 → 1.0.12

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
@@ -37,12 +37,16 @@ npx reflect-mcp install
37
37
  "mcpServers": {
38
38
  "reflect": {
39
39
  "command": "npx",
40
- "args": ["-y", "mcp-remote", "http://localhost:3000/mcp"]
40
+ "args": ["-y", "mcp-remote", "--port", "4209", "http://localhost:3000/mcp"]
41
41
  }
42
42
  }
43
43
  }
44
44
  ```
45
45
 
46
+ > **Important:**
47
+ > - Make sure the port number (`3000` in the example above) matches the port you used when installing the server. If you installed with a custom port using `--port`, use that port number instead.
48
+ > - Add `"--port", "4209"` (use a **different port number for each MCP client** - e.g., `"4210"`, `"4211"`, etc.) to avoid port conflicts. Each MCP client needs a unique port.
49
+
46
50
  **4. Restart Claude Desktop**
47
51
 
48
52
  That's it! First time you use a Reflect tool, your browser will open to authenticate.
package/dist/cli.js CHANGED
@@ -195,10 +195,12 @@ async function install(installArgs) {
195
195
  "mcpServers": {
196
196
  "reflect": {
197
197
  "command": "npx",
198
- "args": ["-y", "mcp-remote", "http://localhost:${port}/mcp"]
198
+ "args": ["-y", "mcp-remote", "--port", "4209", "http://localhost:${port}/mcp"]
199
199
  }
200
200
  }
201
201
  }`);
202
+ console.log(` Note: Make sure the port (${port}) matches the port you used when installing the server.`);
203
+ console.log(` Important: Add "--port", "4209" (or a different port like "4210", "4211", etc.) to avoid conflicts if you have multiple MCP clients running.`);
202
204
  }
203
205
  function uninstall() {
204
206
  console.log("🗑️ Removing Reflect MCP Server auto-start service...\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reflect-mcp",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "MCP server for Reflect Notes - connect your notes to Claude Desktop. Just run: npx reflect-mcp",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",
@@ -39,7 +39,7 @@
39
39
  "@modelcontextprotocol/sdk": "^1.25.1",
40
40
  "better-sqlite3": "^11.10.0",
41
41
  "fastmcp": "^3.25.4",
42
- "reflect-mcp": "^1.0.10",
42
+ "reflect-mcp": "^1.0.11",
43
43
  "zod": "^4.1.13"
44
44
  },
45
45
  "devDependencies": {