qualia_core_db/mcp/mod.rs
1//! Model-Context-Protocol server surface (moved from the crate root per
2//! MODULE_REORG_PLAN.md; `crate::mcp_server` / `crate::mcp_cooperation` paths are
3//! preserved by re-exports in lib.rs). mcp_server owns the *_impls submodules.
4#[cfg(not(target_arch = "wasm32"))]
5pub mod mcp_server;
6// Cooperation gate composes modalities::interaction_governance, so it compiles
7// only where modalities does (native or the logic-enabled wasm profiles).
8#[cfg(any(
9 not(target_arch = "wasm32"),
10 feature = "wasm-logic",
11 feature = "wasm-scientific",
12 feature = "wasm-full"
13))]
14pub mod mcp_cooperation;