purmemo-mcp 3.2.2 → 3.2.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.
- package/README.md +28 -3
- 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`
|
package/package.json
CHANGED