semantic-memory-mcp 0.5.5

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
10
11
12
13
14
15
//! 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,
    _profile: crate::profile::ToolProfile,
) -> std::io::Result<()> {
    panic!("HTTP transport is unavailable in the compile-time stable build; use stdio MCP or rebuild with --features full")
}