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