Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ All notable changes to lean-memory are documented here. The format is based on
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.4] - 2026-08-06

Patch release: the console's MCP tools get the same metadata treatment the
core server got in v0.2.3 (WP14).

### Added

- **Console MCP tool metadata (WP14)** β€” all six console wrapper tools (the
stdio `observe_mcp` server and the HTTP mount) now ship `ToolAnnotations`
(`readOnlyHint`/`destructiveHint`/`idempotentHint`, `openWorldHint=False`),
a description for every inputSchema parameter, and when-to-use guidance
with sibling cross-references and side-effect disclosure. `memory_add` and
`memory_search` now register from a shared module, so the two surfaces
cannot drift apart. Tool names, parameters, and call behavior are
unchanged. Contract pinned in `console/tests/test_mcp_tool_metadata.py`
(green on both mcp majors). Two deliberate divergences from core, both
truthful to console semantics: `memory_search` declares
`readOnlyHint=False` (every call appends a row to the console event log
and creates the namespace store file on first touch β€” clients that
auto-approve on the hint will now prompt), and `memory_review_queue`
declares `idempotentHint=True` (its only write, lazy proposal expiry,
lands on the same end state on re-poll).

## [0.2.3] - 2026-07-29

Compatibility + polish release: mcp SDK 2.0 support (dual-path, pin widened
Expand Down
2 changes: 1 addition & 1 deletion console/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "lean-memory-console"
version = "0.2.3"
version = "0.2.4"
description = "Agent-first read-only verification console for lean-memory"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion console/src/lean_memory_console/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""lean-memory-console β€” agent-first read-only verification console."""

__version__ = "0.2.3"
__version__ = "0.2.4"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lean-memory"
version = "0.2.3"
version = "0.2.4"
description = "Embedded, local-first agent memory with hybrid retrieval and ADD-only supersession."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"url": "https://github.com/Wuesteon/lean-memory",
"source": "github"
},
"version": "0.2.3",
"version": "0.2.4",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "lean-memory",
"version": "0.2.3",
"version": "0.2.4",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
Expand Down
2 changes: 1 addition & 1 deletion src/lean_memory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from .types import Entity, Episode, Fact, RetrievedFact

__all__ = ["Memory", "Episode", "Entity", "Fact", "RetrievedFact"]
__version__ = "0.2.3" # keep in sync with pyproject.toml [project].version
__version__ = "0.2.4" # keep in sync with pyproject.toml [project].version