@pragmatic-growth/memory-mcp 3.1.0 → 3.2.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 +8 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -112,7 +112,14 @@ This package runs locally as a stdio MCP server and proxies requests to the remo
|
|
|
112
112
|
|
|
113
113
|
## Changelog
|
|
114
114
|
|
|
115
|
-
### v3.
|
|
115
|
+
### v3.2.0 (Latest)
|
|
116
|
+
- **API Documentation Enhancement** - Complete REST API documentation with all parameters, examples, and curl commands
|
|
117
|
+
- Bearer token authentication examples (Authorization: Bearer ${CLERK_API_KEY})
|
|
118
|
+
- Improved API docs UI with expandable endpoint cards and copy-to-clipboard functionality
|
|
119
|
+
- Updated Q&A article creation documentation with metadata structure
|
|
120
|
+
- Production-ready curl commands for all 17 REST endpoints
|
|
121
|
+
|
|
122
|
+
### v3.1.0
|
|
116
123
|
- **Breaking: Ultimate Cleanup** - Simplified from 15 tools to 6 focused tools
|
|
117
124
|
- Removed: Episodic Memory tools (5), Q&A intake (1), Full Mode write tools (3)
|
|
118
125
|
- Removed: Token tracking system (~350 lines of SaaS overhead)
|
package/dist/index.js
CHANGED
|
@@ -86,7 +86,7 @@ async function initializeRemoteSession() {
|
|
|
86
86
|
capabilities: {},
|
|
87
87
|
clientInfo: {
|
|
88
88
|
name: 'pg-memory-stdio',
|
|
89
|
-
version: '3.0
|
|
89
|
+
version: '3.2.0',
|
|
90
90
|
},
|
|
91
91
|
});
|
|
92
92
|
if (typeof result === 'object' && result && 'protocolVersion' in result) {
|
|
@@ -112,7 +112,7 @@ async function main() {
|
|
|
112
112
|
// Create local MCP server
|
|
113
113
|
const server = new McpServer({
|
|
114
114
|
name: 'pg-memory',
|
|
115
|
-
version: '2.
|
|
115
|
+
version: '3.2.0',
|
|
116
116
|
description: `PG-Memory knowledge base (${modeLabel} mode)`,
|
|
117
117
|
});
|
|
118
118
|
// ============================================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pragmatic-growth/memory-mcp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.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. Personal knowledge base with 6 focused tools for semantic search and content retrieval.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|