@hskksk/mem-ai-mcp-server 0.1.0 → 0.1.1
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 +38 -6
- package/dist/server.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,16 +15,20 @@ Model Context Protocol (MCP) server for [mem.ai](https://mem.ai) API integration
|
|
|
15
15
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
No installation required! You can run the server directly using `npx` (recommended), or install it globally if you prefer.
|
|
19
|
+
|
|
20
|
+
### Using npx (Recommended)
|
|
19
21
|
|
|
20
22
|
```bash
|
|
21
|
-
|
|
23
|
+
npx @hskksk/mem-ai-mcp-server
|
|
22
24
|
```
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
This automatically downloads and runs the latest version without requiring installation.
|
|
27
|
+
|
|
28
|
+
### Global Installation (Optional)
|
|
25
29
|
|
|
26
30
|
```bash
|
|
27
|
-
npm install @hskksk/mem-ai-mcp-server
|
|
31
|
+
npm install -g @hskksk/mem-ai-mcp-server
|
|
28
32
|
```
|
|
29
33
|
|
|
30
34
|
## Configuration
|
|
@@ -52,7 +56,7 @@ MEM_API_BASE_URL=https://api.mem.ai
|
|
|
52
56
|
|
|
53
57
|
## Usage
|
|
54
58
|
|
|
55
|
-
### With Claude Desktop
|
|
59
|
+
### With Claude Desktop (Recommended)
|
|
56
60
|
|
|
57
61
|
Add the following configuration to your Claude Desktop config file:
|
|
58
62
|
|
|
@@ -63,7 +67,8 @@ Add the following configuration to your Claude Desktop config file:
|
|
|
63
67
|
{
|
|
64
68
|
"mcpServers": {
|
|
65
69
|
"mem-ai": {
|
|
66
|
-
"command": "
|
|
70
|
+
"command": "npx",
|
|
71
|
+
"args": ["-y", "@hskksk/mem-ai-mcp-server"],
|
|
67
72
|
"env": {
|
|
68
73
|
"MEM_API_KEY": "your_api_key_here"
|
|
69
74
|
}
|
|
@@ -74,9 +79,30 @@ Add the following configuration to your Claude Desktop config file:
|
|
|
74
79
|
|
|
75
80
|
After restarting Claude Desktop, you'll be able to use mem.ai tools in your conversations.
|
|
76
81
|
|
|
82
|
+
### Alternative: Using Global Installation
|
|
83
|
+
|
|
84
|
+
If you've installed the package globally:
|
|
85
|
+
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"mcpServers": {
|
|
89
|
+
"mem-ai": {
|
|
90
|
+
"command": "mem-ai-mcp-server",
|
|
91
|
+
"env": {
|
|
92
|
+
"MEM_API_KEY": "your_api_key_here"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
```
|
|
98
|
+
|
|
77
99
|
### Standalone Usage
|
|
78
100
|
|
|
79
101
|
```bash
|
|
102
|
+
# Using npx (recommended)
|
|
103
|
+
MEM_API_KEY=your_api_key_here npx @hskksk/mem-ai-mcp-server
|
|
104
|
+
|
|
105
|
+
# Or if installed globally
|
|
80
106
|
MEM_API_KEY=your_api_key_here mem-ai-mcp-server
|
|
81
107
|
```
|
|
82
108
|
|
|
@@ -205,6 +231,12 @@ If you encounter any issues or have questions:
|
|
|
205
231
|
|
|
206
232
|
## Changelog
|
|
207
233
|
|
|
234
|
+
### 0.1.1
|
|
235
|
+
|
|
236
|
+
- Fixed test script to use `--import` instead of deprecated `--loader` flag
|
|
237
|
+
- Updated README to recommend `npx` usage for easier setup
|
|
238
|
+
- Improved Claude Desktop configuration examples
|
|
239
|
+
|
|
208
240
|
### 0.1.0 (Initial Release)
|
|
209
241
|
|
|
210
242
|
- Complete implementation of all 11 mem.ai API endpoints
|
package/dist/server.js
CHANGED