MCP Hub
Back to servers

HippoDid MCP Server

Persistent, structured cloud memory for AI agents. BYOK — bring your own AI key.

Registry
Updated
Mar 14, 2026

HippoDid MCP Server

MCP (Model Context Protocol) server for HippoDid — connects Claude Desktop (and other MCP clients) to your HippoDid AI character memory.

Quick Start

1. Get an API Key

Sign up at hippodid.com and create an API key from your dashboard.

2. Download the JAR

Download the latest release from GitHub Releases.

3. Configure Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "hippodid": {
      "command": "java",
      "args": ["-jar", "/path/to/hippodid-mcp-server-1.1.0.jar"],
      "env": {
        "HIPPODID_API_KEY": "hd_key_your_key_here",
        "HIPPODID_CHARACTER_ID": "your-character-uuid"
      }
    }
  }
}

4. Start Using

Ask Claude to remember things, search memories, sync files, and more.

MCP Tools

ToolDescription
create_characterCreate a new character to store memories for
list_charactersList all characters accessible to you
add_memoryAdd a memory via the AUDN pipeline (rule-based salience + dedup)
add_memory_directWrite a memory directly, bypassing AUDN pipeline (Starter+ tier)
search_memoriesHybrid semantic + keyword search across memories
sync_fileSync a local file to the HippoDid cloud
import_documentImport a document and extract memories (Starter+ tier)
list_synced_filesList files synced to the cloud for a character
get_sync_statusGet sync status summary for a character
export_characterExport all memories for a character as Markdown
add_watch_pathSync a file and register the path for background tracking
list_watch_pathsList all watched file paths in this session
force_syncForce an immediate sync of all watched paths
configure_aiConfigure tenant BYOK AI providers
test_ai_configTest connectivity of saved AI provider configuration

Environment Variables

VariableRequiredDefaultDescription
HIPPODID_API_KEYYesYour HippoDid API key
HIPPODID_CHARACTER_IDNoDefault character UUID for background sync
HIPPODID_BASE_URLNohttps://api.hippodid.comAPI base URL
MCP_SYNC_INTERVALNo300Background sync interval in seconds
MCP_AUTO_CAPTURENofalseDisable background watcher (AI handles sync)
MCP_AUTO_RECALLNofalseDisable background hydration (AI handles download)
MCP_RECALL_CACHE_TTLNo120Search result cache TTL in seconds

Architecture

Claude Desktop → stdio (JSON-RPC) → McpServerRunner → HippoDidClient → HTTP → HippoDid REST API

The MCP server uses the hippodid-spring-boot-starter to communicate with the HippoDid REST API over HTTP. All authentication and tenant isolation is handled server-side via Bearer tokens.

Building from Source

Requires Java 21+ and Maven 3.8+.

mvn clean package -DskipTests
java -jar target/hippodid-mcp-server-1.1.0.jar

Versioning

The MCP server version matches the hippodid-spring-boot-starter version. Both must be at the same version for compatibility.

License

Apache License 2.0 — see LICENSE.

Reviews

No reviews yet

Sign in to write a review