Skip to main content

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;
8#[cfg(not(all(feature = "stable", not(feature = "full"))))]
9pub mod http_server;
10#[cfg(all(feature = "stable", not(feature = "full")))]
11#[path = "http_server_stable.rs"]
12pub mod http_server;
13#[cfg(not(all(feature = "stable", not(feature = "full"))))]
14pub mod server;
15#[cfg(all(feature = "stable", not(feature = "full")))]
16#[path = "server_stable.rs"]
17pub mod server;
18#[cfg(not(all(feature = "stable", not(feature = "full"))))]
19mod tools;
20#[cfg(all(feature = "stable", not(feature = "full")))]
21#[path = "tools_stable.rs"]
22mod tools;