Skip to content

Commit 87d61fa

Browse files
Skiipy11claude
andcommitted
chore: bump MCP package to v2.3.1, update changelog
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 54cc81e commit 87d61fa

4 files changed

Lines changed: 30 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ This changelog covers the entire Multi-Agent Memory project (API, MCP server, ad
44

55
The canonical source is [`mcp-server/CHANGELOG.md`](mcp-server/CHANGELOG.md) -- this file mirrors it for convenience.
66

7+
## 2.3.1 (2026-03-29)
8+
9+
### Bug Fixes
10+
- **brain_consolidate**: Fixed hardcoded `?sync=true` — async mode now works as documented. Added `sync` boolean parameter for explicit control.
11+
- **MCP input validation**: `brain_store`, `brain_search`, `brain_delete`, and `brain_client` now validate required arguments before calling the API, returning clear error messages instead of passing `undefined`.
12+
- **brain_export**: Added `limit` parameter (default 500) to prevent oversized responses. Description warns about large result sets.
13+
- **Server version**: Self-reported version now matches package.json.
14+
15+
### Reliability
16+
- All API routes sanitize error messages (no internal details leaked to clients)
17+
- Fetch timeouts on all HTTP calls (embedders, LLM providers, Baserow, webhooks)
18+
- Export endpoint paginated, import endpoint now indexes keywords + extracts entities
19+
- Webhook dedup tenant-scoped, Postgres graceful shutdown, auth map cleanup
20+
721
## 2.3.0 (2026-03-26)
822

923
### Multi-Path Retrieval with RRF Fusion

mcp-server/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 2.3.1 (2026-03-29)
4+
5+
### Bug Fixes
6+
- **brain_consolidate**: Fixed hardcoded `?sync=true` — async mode now works as documented. Added `sync` boolean parameter for explicit control.
7+
- **MCP input validation**: `brain_store`, `brain_search`, `brain_delete`, and `brain_client` now validate required arguments before calling the API, returning clear error messages instead of passing `undefined`.
8+
- **brain_export**: Added `limit` parameter (default 500) to prevent oversized responses. Description warns about large result sets.
9+
- **Server version**: Self-reported version now matches package.json.
10+
11+
### Reliability
12+
- All API routes sanitize error messages (no internal details leaked to clients)
13+
- Fetch timeouts on all HTTP calls (embedders, LLM providers, Baserow, webhooks)
14+
- Export endpoint paginated, import endpoint now indexes keywords + extracts entities
15+
- Webhook dedup tenant-scoped, Postgres graceful shutdown, auth map cleanup
16+
317
## 2.3.0 (2026-03-26)
418

519
### Multi-Path Retrieval with RRF Fusion

mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zensystemai/multi-agent-memory-mcp",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"type": "module",
55
"description": "Persistent multi-path memory for AI agents — vector + BM25 keyword + entity graph search with RRF fusion, credential scrubbing, auto-consolidation, multi-backend storage (Qdrant + SQLite/Postgres)",
66
"main": "src/index.js",

mcp-server/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async function apiRequest(path, options = {}) {
4141
}
4242

4343
const server = new Server(
44-
{ name: 'shared-brain', version: '2.3.0' },
44+
{ name: 'shared-brain', version: '2.3.1' },
4545
{ capabilities: { tools: {} } }
4646
);
4747

0 commit comments

Comments
 (0)