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 v3_auto_capture;
18#[cfg(feature = "v3")]
19pub mod v3_greeting;
20#[cfg(feature = "v3")]
21pub mod v3_resources;
22
23pub use config::ServerConfig;
24pub use protocol::ProtocolHandler;
25pub use session::SessionManager;
26pub use transport::StdioTransport;