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

ContextKeep

mordang7/contextkeep
155
Summary

ContextKeep solves the "AI with amnesia" problem by giving Claude, Cursor, and other MCP clients a persistent local memory layer. It exposes eight tools over stdio or SSE: list_all_memories, retrieve_memory, store_memory, search_memories, and newer additions like delete_memory and export_memories. The two-step retrieval pattern (list keys first, then fetch by exact key) prevents the common failure mode where agents hallucinate memory IDs. You get a web dashboard on port 5000 for visual management, Docker Compose support for homelab deployments, and everything stores locally as JSON. Reach for this when you're tired of re-explaining project context every conversation or want to slash token costs by pulling only relevant memories into each request.

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 →

ContextKeep Banner

ContextKeep

Long-Term Memory for AI Agents

Version: 2.1 Status: Stable Platform: Linux | Windows | macOS License: MIT Python 3.10+ MCP Ready Docker Ready

ContextKeep gives AI agents a persistent, searchable memory they can use across sessions. V2.1 adds SQLite, full-text search, user-editable categories, safer Docker defaults, and verified backup-first upgrades.

What's New | Safe Upgrade | Install | MCP Tools | Configuration | Docs


Features

  • Persistent local memory for MCP-compatible agents.
  • SQLite storage with FTS5 full-text search.
  • User-editable categories instead of fixed tags.
  • Multiple categories per memory.
  • WebUI for browsing, editing, searching, exporting, and category management.
  • Streamable HTTP MCP endpoint at /mcp, with SSE fallback for older clients.
  • Docker Compose support with one default service for WebUI and MCP.
  • Verified backup and restore helpers for bare-metal and Docker upgrades.
  • Server identity checks through get_contextkeep_info.

ContextKeep Showcase

What's New In V2.1 Atlas

V2.1 is the first category-first ContextKeep release.

  • list_all_memories has been removed.
  • Agents now use list_categories and list_memories before retrieve_memory.
  • tags are replaced by user-editable categories.
  • Memories can belong to more than one category.
  • V1 tags are preserved as legacy_tags migration metadata.
  • Docker now runs WebUI and MCP together by default so both use the same SQLite database.
  • get_contextkeep_info reports version, storage path, database ID, tool list, and migration status.
  • Upgrade scripts create verified backups before continuing.

Older releases remain available through GitHub releases and tags. V2.1 is the recommended version for new installs and upgrades.

Safe Upgrade First

Before replacing an existing install, use the safe upgrade wrapper. It creates a backup, verifies the archive, checks SQLite/JSON integrity, and stops if anything looks wrong.

Bare-metal:

python scripts/upgrade_to_v2_1.py baremetal

Docker:

python scripts/upgrade_to_v2_1.py docker

V1 JSON migration:

python scripts/upgrade_to_v2_1.py baremetal --v1-source /path/to/old/data/memories

See docs/SAFE_UPGRADE.md for backup, restore, Docker volume, and rollback details.

Install

Fresh Bare-Metal Install

git clone https://github.com/mordang7/ContextKeep.git
cd ContextKeep
python -m venv .venv

Linux/macOS:

source .venv/bin/activate
pip install -r requirements.txt

Windows PowerShell:

.\.venv\Scripts\Activate.ps1
pip install -r requirements.txt

You can also run the installer:

python install.py

Fresh Docker Install

git clone https://github.com/mordang7/ContextKeep.git
cd ContextKeep
docker compose up -d --build

Default ports:

ServiceURL
WebUIhttp://localhost:5000
MCP HTTPhttp://localhost:5100/mcp

Run

Local MCP over stdio:

python server.py

Remote MCP over HTTP:

python server.py --transport http --host 0.0.0.0 --port 5100

WebUI:

python webui.py --host 0.0.0.0 --port 5000

Then open:

http://localhost:5000

MCP Tools

ContextKeep V2.1 exposes 16 tools:

ToolPurpose
get_contextkeep_infoConfirm version, storage path, database ID, schema, tools, and migration status
list_categoriesList live user-editable categories
create_categoryCreate a category when no existing category fits
update_categoryRename or edit category metadata
delete_categoryDelete an empty category or reassign memories
merge_categoriesMerge one category into another
list_memoriesList memory keys/titles, optionally filtered by category
retrieve_memoryRetrieve a memory by exact key
search_memoriesFull-text search memory content
list_recent_memoriesList recently updated memories
store_memoryStore or update a memory with categories
update_categoriesReassign one memory to one or more categories
get_edit_historyView edit history for a memory
delete_memoryDelete a memory permanently
get_memory_statsShow memory/category counts and storage path
export_memoriesExport all memories as JSON

Recommended retrieval flow:

list_categories -> list_memories -> retrieve_memory

Use search_memories for topic discovery, then retrieve the exact matching memory before relying on it.

MCP Client Configuration

Most clients that support streamable HTTP:

{
  "mcpServers": {
    "context-keep": {
      "url": "http://localhost:5100/mcp"
    }
  }
}

Antigravity IDE uses serverURL:

{
  "mcpServers": {
    "context-keep": {
      "serverURL": "http://localhost:5100/mcp"
    }
  }
}

SSE fallback:

{
  "mcpServers": {
    "context-keep": {
      "url": "http://localhost:5100/sse"
    }
  }
}

For a remote machine, replace localhost with the hostname or address of the machine running ContextKeep.

Do not keep an old SSH/stdin config active for the same context-keep server name. It may launch an older server that writes to a different database than the WebUI.

Verify The Right Server

After connecting a client, call get_contextkeep_info.

Expected V2.1 values:

  • version: 2.1.0
  • schema_version: 2
  • storage_backend: sqlite
  • storage_path: /app/data/contextkeep.db in Docker, or your configured local path
  • V2.1 tool list including list_memories, list_categories, update_categories, and get_edit_history

If an agent stores a memory but the WebUI cannot see it, compare WebUI /api/info with MCP get_contextkeep_info. The database_id, storage_path, and memory count should match.

Backup And Restore

Create a verified bare-metal backup:

python scripts/backup_contextkeep.py baremetal --install-dir /path/to/contextkeep

Create a verified Docker backup:

python scripts/backup_contextkeep.py docker --volume <docker-volume-name>

Restore commands are written into every backup folder. The full guide is in docs/SAFE_UPGRADE.md.

If you use container auto-update software, keep an external backup routine. The safe upgrade scripts can verify backups before an upgrade, but unattended image replacement cannot ask you to confirm backup health.

Docs

  • Safe Upgrade Guide
  • V2.1 Release Notes
  • Docker V2.1 Guide
  • Client Configuration
  • Migration Guide
  • Upgrading From V1
  • Directive Update Block

Changelog

V2.1 Atlas

  • SQLite database with FTS5 search.
  • User-editable categories with multi-category memory assignment.
  • WebUI category management.
  • V1 JSON migration with legacy tag preservation.
  • One-container Docker default for shared WebUI/MCP database access.
  • get_contextkeep_info identity checks.
  • Verified backup and restore tooling.
  • Updated MCP client examples for HTTP, Antigravity, and SSE fallback.

V1.3 Harbor

  • Docker support.
  • Modern Python packaging.
  • New tools: delete_memory, get_memory_stats, export_memories.
  • WebUI export.
  • Packaging and code quality fixes.

V1.2 Obsidian Lab

  • Memory directory tool.
  • Obsidian Lab UI redesign.
  • Calendar and memory count improvements.

V1.1

  • Web dashboard.
  • SSE transport support.
  • Linux systemd service installer.
  • Memory titles and timestamps.

V1.0

  • Core MCP server with persistent JSON-backed memory.
  • Local stdio and remote access patterns.

Contributing

Issues, feature ideas, and pull requests are welcome. If you build a client guide, migration recipe, or workflow pattern around ContextKeep, please share it.

V1.3 Community Contributors

Thank you to everyone who contributed to the Harbor release:

  • @shuft opened the Docker support request.
  • @Cyberdogs7 contributed the initial Docker and Docker Compose implementation.
  • @frehov contributed Dockerfile, pyproject.toml, uv support, and packaging fixes.
  • @thinkstylestudio supported the project through community advocacy.

Support

If ContextKeep saves you time, tokens, or context-window pain, support is appreciated.

Ko-Fi


Built by GeekJohn
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 →
Categories
AI & LLM Tools
UpdatedJan 25, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f