Skip to main content

agentic_memory_mcp/
lib.rs

1//! AgenticMemory MCP Server — universal LLM access to persistent graph memory.
2//!
3//! This library implements an MCP (Model Context Protocol) server that exposes
4//! AgenticMemory functionality to any MCP-compatible LLM client.
5
6pub mod config;
7pub mod prompts;
8pub mod protocol;
9pub mod resources;
10pub mod session;
11pub mod streaming;
12pub mod tools;
13pub mod transport;
14pub mod types;
15
16#[cfg(feature = "v3")]
17pub mod ghost_bridge;
18#[cfg(feature = "v3")]
19pub mod v3_auto_capture;
20#[cfg(feature = "v3")]
21pub mod v3_greeting;
22#[cfg(feature = "v3")]
23pub mod v3_resources;
24
25pub use config::ServerConfig;
26pub use protocol::ProtocolHandler;
27pub use session::SessionManager;
28pub use transport::StdioTransport;