CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

HippoDid MCP Server

samethoughts/hippodid-mcp-server
STDIOregistry active
Summary

Gives Claude persistent memory that survives across sessions and travels between AI tools. You get structured storage for preferences, decisions, and context via a cloud API, with tools to add memories, search semantically, sync local files, and configure your own OpenAI or Anthropic keys for extraction. HippoDid automatically categorizes facts and applies temporal decay so skills stick around while events fade. The Java server connects over stdio and talks to the HippoDid REST API. Useful when you're switching between Claude Desktop, Cursor, and ChatGPT but want the agent to remember what you told it last week without re-explaining your project setup every time.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

HippoDid MCP Server — persistent cloud memory for AI agents

HippoDid MCP Server
Persistent, portable memory for AI agents. Your AI forgets everything between sessions. HippoDid remembers.


HippoDid MCP Server

MCP (Model Context Protocol) server for HippoDid — connects Claude Code, Claude Desktop, ChatGPT, Gemini CLI, Codex CLI, Cursor, and any MCP-compatible client to persistent AI character memory.

What is HippoDid?

HippoDid is a cloud memory infrastructure for AI agents. It stores structured memories (preferences, decisions, skills, relationships) in a searchable database and retrieves them across sessions, tools, and AI providers. Write a memory in Claude Code, recall it in ChatGPT. Switch from Cursor to Gemini — your agent's memory travels with it.

Key features:

  • Cross-platform memory — same memories accessible from any MCP client or ChatGPT via OAuth
  • Structured extraction — raw text is automatically parsed into categorized facts with salience scores
  • Temporal decay — memories fade naturally by category (skills are evergreen, events fade in 14 days)
  • Character scoping — each agent/project gets its own memory namespace
  • BYOK AI — bring your own OpenAI, Anthropic, or Gemini key for extraction

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_KEYYes—Your HippoDid API key
HIPPODID_CHARACTER_IDNo—Default 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.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

HIPPODID_API_KEY

Your HippoDid API key. Get one at https://app.hippodid.com/settings/api-keys

HIPPODID_CHARACTER_ID

Default character UUID for background sync

HIPPODID_BASE_URL

API base URL (default: https://api.hippodid.com)

Registryactive
Packagehttps://github.com/SameThoughts/hippodid-mcp-server/releases/download/v1.1.0/hippodid-mcp-server-1.1.0.jar
TransportSTDIO
UpdatedMar 14, 2026
View on GitHub