purmemo-mcp 3.2.2 β 3.2.4
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 +28 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,13 +56,38 @@ This repository contains the **open-source MCP protocol wrapper** that connects
|
|
|
56
56
|
4. Name it (e.g., "Claude Desktop") β "Create Key"
|
|
57
57
|
5. Copy the key immediately (won't be shown again)
|
|
58
58
|
|
|
59
|
-
### 2.
|
|
59
|
+
### 2. Choose Your Connection Method
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
| Method | Remote Connection | Local Connection |
|
|
62
|
+
|--------|------------------|------------------|
|
|
63
|
+
| **Setup** | Click & Connect | Edit Config File |
|
|
64
|
+
| **Install** | Nothing to install | Auto-downloads via npx |
|
|
65
|
+
| **Privacy** | Data goes through our MCP server | Direct from your machine to API |
|
|
66
|
+
| **Updates** | Automatic | Manual (via npm) |
|
|
67
|
+
| **Best For** | Quick testing, non-sensitive data | Production use, sensitive data |
|
|
68
|
+
|
|
69
|
+
#### Option A: Remote Connection (Easiest - Beta Feature)
|
|
70
|
+
Use Claude Desktop's "Add custom connector" feature to connect directly to our hosted MCP server at `mcp.purmemo.ai`.
|
|
71
|
+
|
|
72
|
+
#### Option B: Local Connection (More Control)
|
|
73
|
+
Claude Desktop will automatically download and run the MCP server locally using `npx`.
|
|
62
74
|
|
|
63
75
|
### 3. Configure Claude Desktop
|
|
64
76
|
|
|
65
|
-
|
|
77
|
+
#### For Remote Connection (Option A):
|
|
78
|
+
1. In Claude Desktop, click the π icon (bottom right)
|
|
79
|
+
2. Click "Add custom connector (BETA)"
|
|
80
|
+
3. Enter:
|
|
81
|
+
- **Name**: Purmemo
|
|
82
|
+
- **URL**: `https://mcp.purmemo.ai`
|
|
83
|
+
4. Add authentication header:
|
|
84
|
+
- Click "Add Header"
|
|
85
|
+
- **Key**: `Authorization`
|
|
86
|
+
- **Value**: `Bearer YOUR_API_KEY_HERE`
|
|
87
|
+
5. Click "Connect"
|
|
88
|
+
|
|
89
|
+
#### For Local Connection (Option B):
|
|
90
|
+
Add to your Claude Desktop configuration file:
|
|
66
91
|
|
|
67
92
|
**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
68
93
|
**Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
@@ -237,17 +262,6 @@ The following remain proprietary:
|
|
|
237
262
|
- π Issues: [GitHub Issues](https://github.com/coladapo/purmemo-mcp/issues)
|
|
238
263
|
- π Website: [purmemo.ai](https://purmemo.ai)
|
|
239
264
|
|
|
240
|
-
## πΊοΈ Roadmap
|
|
241
|
-
|
|
242
|
-
- [x] Core MCP implementation
|
|
243
|
-
- [x] OAuth 2.1 authentication
|
|
244
|
-
- [x] 5 essential tools
|
|
245
|
-
- [ ] WebSocket support for real-time
|
|
246
|
-
- [ ] Batch operations
|
|
247
|
-
- [ ] Memory sharing between users
|
|
248
|
-
- [ ] Voice memory capture
|
|
249
|
-
- [ ] Official MCP recognition
|
|
250
|
-
|
|
251
265
|
---
|
|
252
266
|
|
|
253
267
|
<div align="center">
|
package/package.json
CHANGED