@pragmatic-growth/memory-mcp 2.3.0 → 2.4.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 +7 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/index.ts +3 -3
package/README.md
CHANGED
|
@@ -191,7 +191,13 @@ For full mode to work:
|
|
|
191
191
|
|
|
192
192
|
## Changelog
|
|
193
193
|
|
|
194
|
-
### v2.
|
|
194
|
+
### v2.4.0 (Latest)
|
|
195
|
+
- Changed default server URL to custom domain: `https://memory.pragmaticgrowth.com/api/mcp`
|
|
196
|
+
- Simplified authentication to API key only (removed OAuth infrastructure)
|
|
197
|
+
- Updated dependencies to latest versions
|
|
198
|
+
- Improved error messages and documentation
|
|
199
|
+
|
|
200
|
+
### v2.3.0
|
|
195
201
|
- Added unified `get_content` and `list_content` tools (replacing `get_article`/`list_articles`)
|
|
196
202
|
- Added Knowledge Graph tools: `find_related`, `get_entities`, `search_entities`, `get_knowledge_graph`
|
|
197
203
|
- Added Episodic Memory tools: `start_conversation`, `add_message`, `get_conversation`, `list_conversations`, `get_session_context`
|
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ const hasFullFlag = args.includes('--full') || args.includes('--edit');
|
|
|
28
28
|
const envMode = process.env.MCP_MODE?.toLowerCase();
|
|
29
29
|
const isFullMode = hasFullFlag || envMode === 'full' || envMode === 'edit';
|
|
30
30
|
// Configuration
|
|
31
|
-
const SERVER_URL = process.env.MCP_SERVER_URL || 'https://
|
|
31
|
+
const SERVER_URL = process.env.MCP_SERVER_URL || 'https://memory.pragmaticgrowth.com/api/mcp';
|
|
32
32
|
const API_KEY = process.env.MCP_API_KEY;
|
|
33
33
|
if (!API_KEY) {
|
|
34
34
|
console.error('Error: MCP_API_KEY environment variable is required');
|
|
@@ -81,7 +81,7 @@ async function initializeRemoteSession() {
|
|
|
81
81
|
capabilities: {},
|
|
82
82
|
clientInfo: {
|
|
83
83
|
name: 'pg-memory-stdio',
|
|
84
|
-
version: '2.
|
|
84
|
+
version: '2.4.0',
|
|
85
85
|
},
|
|
86
86
|
});
|
|
87
87
|
}
|
|
@@ -101,7 +101,7 @@ async function main() {
|
|
|
101
101
|
// Create local MCP server
|
|
102
102
|
const server = new McpServer({
|
|
103
103
|
name: 'pg-memory',
|
|
104
|
-
version: '2.
|
|
104
|
+
version: '2.4.0',
|
|
105
105
|
description: `PG-Memory knowledge base (${modeLabel} mode)`,
|
|
106
106
|
});
|
|
107
107
|
// ============================================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pragmatic-growth/memory-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Stdio proxy for PG-Memory - connects stdio-based MCP clients (Claude Desktop, Raycast) to your PG-Memory HTTP server using Clerk API key authentication. Supports both read-only and full edit modes.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
package/src/index.ts
CHANGED
|
@@ -31,7 +31,7 @@ const envMode = process.env.MCP_MODE?.toLowerCase();
|
|
|
31
31
|
const isFullMode = hasFullFlag || envMode === 'full' || envMode === 'edit';
|
|
32
32
|
|
|
33
33
|
// Configuration
|
|
34
|
-
const SERVER_URL = process.env.MCP_SERVER_URL || 'https://
|
|
34
|
+
const SERVER_URL = process.env.MCP_SERVER_URL || 'https://memory.pragmaticgrowth.com/api/mcp';
|
|
35
35
|
const API_KEY = process.env.MCP_API_KEY;
|
|
36
36
|
|
|
37
37
|
if (!API_KEY) {
|
|
@@ -103,7 +103,7 @@ async function initializeRemoteSession(): Promise<void> {
|
|
|
103
103
|
capabilities: {},
|
|
104
104
|
clientInfo: {
|
|
105
105
|
name: 'pg-memory-stdio',
|
|
106
|
-
version: '2.
|
|
106
|
+
version: '2.4.0',
|
|
107
107
|
},
|
|
108
108
|
});
|
|
109
109
|
}
|
|
@@ -125,7 +125,7 @@ async function main(): Promise<void> {
|
|
|
125
125
|
// Create local MCP server
|
|
126
126
|
const server = new McpServer({
|
|
127
127
|
name: 'pg-memory',
|
|
128
|
-
version: '2.
|
|
128
|
+
version: '2.4.0',
|
|
129
129
|
description: `PG-Memory knowledge base (${modeLabel} mode)`,
|
|
130
130
|
});
|
|
131
131
|
|