semantic_memory_mcp/lib.rs
1//! semantic-memory-mcp — MCP server for semantic-memory.
2//!
3//! Library target for integration tests. The main binary entry point
4//! is in `main.rs`; this module re-exports the public modules so
5//! integration tests can access bridge and http_server.
6
7pub mod bridge;
8pub mod http_server;
9pub mod server;
10mod tools;