do-memory-mcp 0.1.29

Model Context Protocol (MCP) server for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Statistical Analysis Implementation
//!
//! Core statistical engine providing Bayesian changepoint detection,
//! correlation analysis with significance testing, and time-series trend detection.

pub use bocpd::{SimpleBOCPD, log_sum_exp};
pub use engine::{ChangepointDetector, CorrelationAnalyzer, StatisticalEngine};
pub use types::{
    AnalysisMetadata, BOCPDConfig, BOCPDResult, BOCPDState, ChangeType, ChangepointConfig,
    ChangepointResult, CorrelationResult, StatisticalConfig, StatisticalResults, TrendDirection,
    TrendResult,
};

pub use SimpleBOCPD as BocpdDetector;

pub mod bocpd;
mod engine;
pub mod types;