mcp_session_memory/lib.rs
1//! # Session Memory MCP Server
2//!
3//! Policy-controlled access to live and historical agent session context:
4//! typed session state, scoped memory recall, replay snapshots, and resumable workflows.
5
6pub mod error;
7pub mod store;
8pub mod types;
9pub mod memory_store;
10pub mod server;
11
12pub use error::MemoryError;
13pub use store::{MemoryStore, SessionStore};
14pub use types::*;