chaotic_semantic_memory 0.3.6

AI memory systems with hyperdimensional vectors and chaotic reservoirs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! MCP Server module (ADR-0067)
//!
//! Provides Model Context Protocol server for AI agent integration.
//! Enabled via `mcp` feature flag.

#[cfg(feature = "mcp")]
mod handler;
#[cfg(feature = "mcp")]
mod schema;
#[cfg(feature = "mcp")]
mod server;

#[cfg(feature = "mcp")]
pub use handler::McpHandler;
#[cfg(feature = "mcp")]
pub use server::{McpConfig, Transport, serve};