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.
Files changed (2) hide show
  1. package/README.md +21 -29
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -21,45 +21,37 @@
21
21
 
22
22
  ## 🚀 Quick Start
23
23
 
24
- ### 1. Get Your API Key
24
+ ### 1. Create Your Purmemo Account
25
25
 
26
26
  1. Sign up at [purmemo.ai/register](https://www.purmemo.ai/register)
27
- 2. Sign in and go to [purmemo.ai/settings](https://www.purmemo.ai/settings)
28
- 3. Click "API Keys" tab → "Create New Key"
29
- 4. Name it (e.g., "Claude Desktop") → "Create Key"
30
- 5. Copy the key immediately (won't be shown again)
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** | Click & Connect | Edit Config File |
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 on Claude Desktop, Web, Mobile | Claude Desktop only |
39
+ | **Platforms** | Works across all Claude platforms | Claude Desktop only |
39
40
  | **Updates** | Automatic | Manual (via npm) |
40
- | **Best For** | Most users - secure & convenient | Advanced users who prefer local control |
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
- #### For Remote Connection (Option A):
51
- 1. In Claude Desktop, click the 🔌 icon (bottom right)
52
- 2. Click "Add custom connector (BETA)"
53
- 3. Enter:
54
- - **Name**: Purmemo
55
- - **URL**: `https://mcp.purmemo.ai`
56
- 4. Add authentication header:
57
- - Click "Add Header"
58
- - **Key**: `Authorization`
59
- - **Value**: `Bearer YOUR_API_KEY_HERE`
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "purmemo-mcp",
3
- "version": "3.2.8",
3
+ "version": "3.3.0",
4
4
  "description": "Official Model Context Protocol (MCP) server for Purmemo - Your AI-powered second brain with 5 complete tools",
5
5
  "main": "src/server.js",
6
6
  "type": "module",