@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 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
- ### Global Installation (Recommended)
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
- npm install -g @hskksk/mem-ai-mcp-server
23
+ npx @hskksk/mem-ai-mcp-server
22
24
  ```
23
25
 
24
- ### Local Installation
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": "mem-ai-mcp-server",
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
@@ -38,7 +38,7 @@ export async function createServer(apiKey, baseURL) {
38
38
  // Create MCP server
39
39
  const server = new Server({
40
40
  name: 'mem-ai-mcp-server',
41
- version: '0.1.0',
41
+ version: '0.1.1',
42
42
  }, {
43
43
  capabilities: {
44
44
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hskksk/mem-ai-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for mem.ai API integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",