purmemo-mcp 3.2.8 → 3.3.0
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 +21 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,45 +21,37 @@
|
|
|
21
21
|
|
|
22
22
|
## 🚀 Quick Start
|
|
23
23
|
|
|
24
|
-
### 1.
|
|
24
|
+
### 1. Create Your Purmemo Account
|
|
25
25
|
|
|
26
26
|
1. Sign up at [purmemo.ai/register](https://www.purmemo.ai/register)
|
|
27
|
-
2.
|
|
28
|
-
3.
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
2. Verify your email
|
|
28
|
+
3. Sign in to your account
|
|
29
|
+
|
|
30
|
+
**For Option B (Local) only**: Get an API key from [purmemo.ai/settings](https://www.purmemo.ai/settings) → API Keys tab
|
|
31
31
|
|
|
32
32
|
### 2. Choose Your Connection Method
|
|
33
33
|
|
|
34
|
-
| Method | Remote Connection | Local Connection |
|
|
35
|
-
|
|
36
|
-
| **Setup** |
|
|
34
|
+
| Method | Remote Connection (Beta) | Local Connection |
|
|
35
|
+
|--------|--------------------------|------------------|
|
|
36
|
+
| **Setup** | Add Custom Connector | Edit Config File |
|
|
37
|
+
| **Auth** | OAuth flow in browser | API Key in config |
|
|
37
38
|
| **Install** | Nothing to install | Auto-downloads via npx |
|
|
38
|
-
| **Platforms** | Works
|
|
39
|
+
| **Platforms** | Works across all Claude platforms | Claude Desktop only |
|
|
39
40
|
| **Updates** | Automatic | Manual (via npm) |
|
|
40
|
-
| **Best For** | Most users -
|
|
41
|
-
|
|
42
|
-
#### Option A: Remote Connection (Recommended)
|
|
43
|
-
Use Claude's "Add custom connector" feature to connect directly to our secure MCP server at `mcp.purmemo.ai`. All traffic is encrypted via HTTPS/TLS.
|
|
44
|
-
|
|
45
|
-
#### Option B: Local Connection (Advanced)
|
|
46
|
-
Run the MCP server locally on your machine. Requires Node.js and only works with Claude Desktop.
|
|
41
|
+
| **Best For** | Most users - no API key needed | Advanced users who prefer local control |
|
|
47
42
|
|
|
48
43
|
### 3. Configure Claude Desktop
|
|
49
44
|
|
|
50
|
-
####
|
|
51
|
-
1. In Claude Desktop,
|
|
52
|
-
2. Click "Add custom connector
|
|
53
|
-
3. Enter:
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
5. Click "Connect"
|
|
61
|
-
|
|
62
|
-
#### For Local Connection (Option B):
|
|
45
|
+
#### Option A: Remote Connection via Custom Connector (Beta)
|
|
46
|
+
1. In Claude Desktop, scroll to bottom of connectors list
|
|
47
|
+
2. Click "Add custom connector"
|
|
48
|
+
3. Enter URL: `https://mcp.purmemo.ai`
|
|
49
|
+
4. You'll be redirected to Purmemo login in your browser
|
|
50
|
+
5. Sign in with your Purmemo account
|
|
51
|
+
6. Authorize Claude to access your memories
|
|
52
|
+
7. Connection established automatically
|
|
53
|
+
|
|
54
|
+
#### Option B: Local Connection via Config File
|
|
63
55
|
Add to your Claude Desktop configuration file:
|
|
64
56
|
|
|
65
57
|
**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
package/package.json
CHANGED