@pragmatic-growth/memory-mcp 3.0.0 → 3.0.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 +6 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ For clients that support HTTP/SSE transport (Codex, Cursor, Claude Code):
|
|
|
12
12
|
{
|
|
13
13
|
"mcpServers": {
|
|
14
14
|
"pg-memory": {
|
|
15
|
-
"
|
|
15
|
+
"type": "http",
|
|
16
16
|
"url": "https://your-server.up.railway.app/api/mcp",
|
|
17
17
|
"headers": {
|
|
18
18
|
"X-API-Key": "your-clerk-api-key"
|
|
@@ -21,6 +21,7 @@ For clients that support HTTP/SSE transport (Codex, Cursor, Claude Code):
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
```
|
|
24
|
+
The `X-API-Key` header must contain your **Clerk User API Key**.
|
|
24
25
|
|
|
25
26
|
### 2. Stdio Transport (This Package)
|
|
26
27
|
For clients that only support stdio (Raycast, local tools):
|
|
@@ -191,7 +192,10 @@ For full mode to work:
|
|
|
191
192
|
|
|
192
193
|
## Changelog
|
|
193
194
|
|
|
194
|
-
### v3.0.
|
|
195
|
+
### v3.0.1 (Latest)
|
|
196
|
+
- Fix HTTP transport example (`type: "http"`; no `command`)
|
|
197
|
+
|
|
198
|
+
### v3.0.0
|
|
195
199
|
- Breaking: `CLERK_API_KEY` replaces `MCP_API_KEY`
|
|
196
200
|
- Adds MCP protocol negotiation for 2025-11-25, 2025-06-18, 2025-03-26
|
|
197
201
|
- Sends `MCP-Protocol-Version` on follow-up requests
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pragmatic-growth/memory-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
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
|
@@ -107,7 +107,7 @@ async function initializeRemoteSession(): Promise<void> {
|
|
|
107
107
|
capabilities: {},
|
|
108
108
|
clientInfo: {
|
|
109
109
|
name: 'pg-memory-stdio',
|
|
110
|
-
version: '3.0.
|
|
110
|
+
version: '3.0.1',
|
|
111
111
|
},
|
|
112
112
|
});
|
|
113
113
|
if (typeof result === 'object' && result && 'protocolVersion' in result) {
|