Skip to main content

hippmem-mcp

MCP server for HIPPMEM — give AI tools long-term associative memory.

CI PyPI Python License

Ecosystem: Rust engine · Python bindings · MCP server


What is HIPPMEM?

HIPPMEM is a native associative memory engine for AI agents, written in Rust. Instead of storing text chunks and searching them by vector similarity, it discovers associations between memories at write time and retrieves them via spreading activation at read time — so the AI recalls not just what was said, but how things connect and why.

It runs fully offline with a deterministic fallback backend.

What is hippmem-mcp?

hippmem-mcp wraps HIPPMEM as a Model Context Protocol server. Configure it once in Claude Desktop (or any MCP-compatible tool), and your AI assistant gains persistent, associative memory across sessions — no API key required.

Claude Code / Claude Desktop / other tools
        │  MCP (streamable HTTP)
        ▼
  hippmem-mcp  (one long-lived process owns the store)
        │  Python bindings
        ▼
  hippmem Engine (Rust)
        │
        ▼
  Local storage (redb + Tantivy + HNSW)

Key Features

  • Zero configpip install then one JSON block in your MCP client configuration; deterministic fallback backend works offline
  • Write-time association discovery — entities, topics, goals, causal links extracted and scored automatically
  • Spreading activation retrieval — multi-channel seed recall (BM25 + entity + semantic + temporal + topic) fused by RRF
  • Graph evolution — co-activated connections strengthen (Hebbian learning); stale edges decay
  • Explanation traces — every result shows why it was recalled via dimensions and matched_dimensions
  • Single-file storage — one redb file + Tantivy full-text index + HNSW vector index; no external database

Install

pip install hippmem-mcp

Requires Python ≥ 3.11.

Configure

Quick start (server mode)

hippmem-mcp runs as a long-lived HTTP server that owns the memory store — multiple AI sessions connect to it and share one memory (a stdio process per session cannot share the store: the engine holds a single-writer lock).

hippmem-mcp                     # HTTP server on http://127.0.0.1:8080/mcp
hippmem-mcp --port 9000         # custom port (or $HIPPMEM_MCP_PORT)
hippmem-mcp --stdio             # debug/single-session path (MCP over stdout)
  • Server logs go to ~/.hippmem/mcp.log
  • The memory graph consolidates in the background (every 5 minutes after a write; $HIPPMEM_CONSOLIDATE_INTERVAL_SECONDS to tune)
  • Start it once per machine (see Running as a service) and point every client at the same URL

Claude Desktop

Add to claude_desktop_config.json (or use "type": "http" where supported):

{
  "mcpServers": {
    "hippmem": {
      "type": "http",
      "url": "http://127.0.0.1:8080/mcp"
    }
  }
}

Environment Variables

The server reads these variables from the environment that launches it — the env block in your MCP client config (e.g. Claude Desktop) or your shell, not from a .env file (none is auto-loaded). .env.example is a reference template for that environment.

Variable Default Description
HIPPMEM_STORE_PATH (engine default: ./hippmem_data relative to the server's working directory) Fixed memory store path. Set for a shared global memory across projects. Unset gives one store per working directory — per-project for Claude Code (which launches the server from the project dir), global for clients that don't.
HIPPMEM_EMBEDDER_PROVIDER hash Embedder: hash (offline, default) or neural (API-based, higher accuracy). Any other value fails fast at startup.
HIPPMEM_EMBEDDING_BASE_URL (none — required when neural) OpenAI-compatible API endpoint, e.g. https://api.openai.com/v1
HIPPMEM_EMBEDDING_MODEL (none — required when neural) Model name, e.g. text-embedding-3-small
OPENAI_API_KEY (none) API key — required when HIPPMEM_EMBEDDER_PROVIDER=neural

With HIPPMEM_EMBEDDER_PROVIDER=neural, all three API variables above are required — startup fails naming the missing ones. The deterministic fallback backend requires no API key, no GPU, and no network connection.

Claude Code

Claude Code supports MCP natively. Add to your Claude Code MCP config (.claude/mcp.json or project .mcp.json):

{
  "mcpServers": {
    "hippmem": {
      "type": "http",
      "url": "http://127.0.0.1:8080/mcp"
    }
  }
}

Then in any Claude Code session, retrieval is query-driven — trigger it when a task signal appears (a past decision, a user preference, an unknown constraint), not by bulk-loading at session start:

Before answering, use retrieve_memories to check whether we have relevant
memory about this topic. Query with the specific question, not the whole task.

See Best Practices for the full retrieval/feedback loop.

Other MCP Clients

hippmem-mcp speaks standard MCP over streamable HTTP. Configure any MCP-compatible client with the URL transport (http://127.0.0.1:8080/mcp) the same way. The --stdio path remains available for debugging or single-session use.

Running as a service (macOS)

A long-lived server is meant to stay up. With launchd (auto-start + crash restart), save the following to ~/Library/LaunchAgents/io.hippmem.mcp.plist and run launchctl load ~/Library/LaunchAgents/io.hippmem.mcp.plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>Label</key><string>io.hippmem.mcp</string>
  <key>ProgramArguments</key>
  <array>
    <string>/usr/local/bin/hippmem-mcp</string>
  </array>
  <key>RunAtLoad</key><true/>
  <key>KeepAlive</key><true/>
  <key>StandardErrorPath</key><string>/tmp/hippmem-mcp.err.log</string>
</dict>
</plist>

Tools

Tool Description
write_memory Write a memory. The engine automatically discovers associations with existing memories. Supports content_type (Decision, Preference, ProjectKnowledge, TaskState, Correction, Event, Reflection) and importance (0.0–1.0).
retrieve_memories Cross-session associative recall via multi-channel seed retrieval + spreading activation. Returns {retrieval_id, results} — each result is scored and explains why it was recalled via dimensions. Supports top_k (default 3) and max_hops.
feedback_memory Send usage feedback for a previous retrieval (retrieval_id from retrieve_memories): referenced, user_confirmed_correct, task_succeeded, or user_rejected. Strengthens what was used, weakens what was rejected — this is the loop that makes retrieval more accurate over time.

Development

git clone https://github.com/hippmem/hippmem-mcp.git
cd hippmem-mcp
pip install -e ".[dev]"
pytest

See CONTRIBUTING.md for commit conventions, PR workflow, and DCO requirements.

Documentation

License

Apache 2.0. See LICENSE and COPYRIGHT.

The underlying HIPPMEM engine (hippmem) is AGPL-3.0-only. A commercial license is available — contact hippmem@gmail.com.

Licensing FAQ

Is the engine AGPL in practice even if I use this Apache-2.0 server? Yes. This package is a thin Python binding over the AGPL engine — any deployment that runs it is effectively distributing/using AGPL-covered code. The Apache-2.0 license covers the binding's own code; the engine underneath stays AGPL-3.0-only.

Does my own internal use trigger AGPL obligations? No. Personal/internal use — your own workflow, your own agents, data that never leaves your machine — is unaffected by AGPL's network clause. No obligations until you provide the software as a service to others or redistribute it.

When does the network clause trigger? Offering HIPPMEM as a service to users (a SaaS product, a hosted memory backend for your customers) triggers AGPL §13: you must offer the complete corresponding source of the AGPL-covered engine to those users. Redistributing the engine (bundling it into a distributed product) similarly triggers source-availability.

What if I want to use HIPPMEM in a commercial product without AGPL obligations? Contact hippmem@gmail.com for a commercial license. The project follows the proven dual-licensing model (MongoDB/Redis lineage): AGPL for open/community use, a paid license for commercial distribution.

Does using this package as an MCP server for my own AI assistant count as a service? No — that is personal/internal use. The trigger is providing a service to users, not using the software yourself.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hippmem_mcp-0.4.6.tar.gz (30.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hippmem_mcp-0.4.6-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file hippmem_mcp-0.4.6.tar.gz.

File metadata

  • Download URL: hippmem_mcp-0.4.6.tar.gz
  • Upload date:
  • Size: 30.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for hippmem_mcp-0.4.6.tar.gz
Algorithm Hash digest
SHA256 ae1a05b5737713b279f340cebc76786a03f9f50b86716c80aa4e74ab98dc49e3
MD5 e026fa16b8388f692adb3b1ad1edb840
BLAKE2b-256 a685675572298278f3500629eec5aee74eaafb871a4b22b1d117c9636fc81b3a

See more details on using hashes here.

File details

Details for the file hippmem_mcp-0.4.6-py3-none-any.whl.

File metadata

  • Download URL: hippmem_mcp-0.4.6-py3-none-any.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for hippmem_mcp-0.4.6-py3-none-any.whl
Algorithm Hash digest
SHA256 88c6480c8743eaeda29e508700d1dc869f34c2174585b26cf0acc22f90c2cb4a
MD5 2318c5412e487f50e44a4aa6c7abd6b5
BLAKE2b-256 476eb64d0d08df1c0432fc0cbad831a3012d87988815edad05ffd562392068e3

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.4.6 This release

2 files

0.4.5

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page