semantic-memory-mcp 0.5.2

MCP server wrapping semantic-memory — local-first knowledge management with evidence-scored retrieval, contradiction detection, and adaptive routing
Documentation
1
2
3
4
5
6
7
8
9
//! HTTP is intentionally absent from the compile-time stable artifact.

use crate::bridge::MemoryBridge;
use tokio::runtime::Handle;

#[cold]
pub fn start_http_server(_port: u16, _auth_token: &str, _bridge: MemoryBridge, _handle: Handle) {
    panic!("HTTP transport is unavailable in the compile-time stable build; use stdio MCP or rebuild with --features full")
}