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
16
17
18
#!/usr/bin/env bash
set -euo pipefail

binary="${SEMANTIC_MEMORY_MCP_BIN:-semantic-memory-mcp}"
memory_dir="${SEMANTIC_MEMORY_DIR:-${HOME}/.local/share/semantic-memory}"
tool_profile="${SEMANTIC_MEMORY_TOOL_PROFILE:-agent}"

case "$tool_profile" in
  lean|standard|agent|full) ;;
  *)
    echo "SEMANTIC_MEMORY_TOOL_PROFILE must be lean, standard, agent, or full" >&2
    exit 64
    ;;
esac

exec "$binary" \
  --memory-dir "$memory_dir" \
  --tool-profile "$tool_profile"