š§ AI Memory Management for Claude Desktop. Save, search & organize chat history with intelligent summarization. MCP server.
{
"memcord-desktop-config": {
"command": "uv",
"args": [
"--directory",
"</path/to/memcord>",
"run",
"memcord"
],
"env": {
"PYTHONPATH": "</path/to/memcord/>/src"
}
},
"memcord-stdio": {
"command": "uv",
"args": [
"--directory",
"</path/to/memcord>",
"run",
"memcord"
],
"env": {
"PYTHONPATH": "</path/to/memcord>/src"
}
}
}
|
MEMCORD v2.2 (mcp server)This privacy-first, self-hosted MCP server helps you organize chat history, summarize messages, search across past chats with AI ā and keeps everything secure and fully under your control. |
Never Lose Context Again
Transform your Claude conversations into a searchable, organized knowledge base that grows with you
⨠Core Benefits
- š§ Infinite Memory - Claude remembers everything across unlimited conversations with intelligent auto-summarization
- š Your Data, Your Control - 100% local storage with zero cloud dependencies or privacy concerns
- šÆ Effortless Organization - Smart tags and folders that organize themselves around your workflow
- š Intelligent Merging - Automatically combines related conversations while eliminating duplicates
š What's new in v2.2.0
- ā
Timeline Navigation -
memcord_select_entry - ā
ESimplified Slot Activation -
memcord_use - ā
Memory Integration Promoted -
memcord_merge
š Quick Start
curl -fsSL https://github.com/ukkit/memcord/raw/main/install.sh | bash
This will:
- Download and setup memcord
- Set Up Python Virtual Environment using uv
- Update claude_desktop_config.json & README.md with Installation Path
Claude Desktop/VSCode
{
"mcpServers": {
"memcord": {
"command": "uv",
"args": [
"--directory",
"</path/to/memcord>",
"run",
"memcord"
],
"env": {
"PYTHONPATH": "</path/to/memcord/>/src"
}
}
}
}
Claude Code MCP
Add MCP server for your project - check README.md for installation path
claude mcp add-json memcord '{"type":"stdio","command":"uv","args":["--directory","</path/to/memcord>","run","memcord"],"env":{"PYTHONPATH":"</path/to/memcord>/src"}}'
Verify installation
claude mcp list
claude mcp get memcord
Add at top of your CLAUDE.md file
memcord_name "NAME_OF_YOUR_PROJECT"
Manual Installaion
# Traditional installation method
git clone https://github.com/ukkit/memcord.git
cd memcord
uv venv
source .venv/bin/activate
uv pip install -e .
# Replace </path/to/memcord/> in claude_desktop_config.json to the path where you installed it manually
Complete Installation Guide - Detailed setup for Claude Code, Claude Desktop, and other MCP applications.
š» Basic Usage
# Create a memory slot and save conversation
memcord_name "project_meeting"
memcord_save "Our discussion about the new API design..."
memcord_save_progress
# Use existing memory slot
memcord_use "project_meeting" š
# Navigate timeline - select specific entries
memcord_select_entry "2 hours ago" # or "latest", index, timestamp š
# Privacy control - activate zero mode (no saving)
memcord_zero # No memory will be saved until switched to another slot
# Search and query your memories
memcord_search "API design decisions"
memcord_query "What did we decide about authentication?"
# Merge related conversations
memcord_merge ["project_meeting", "api_notes"] "consolidated_project" š
Refer to š Complete Tools Reference for Advanced Mode and detailed documentation for all 19 tools with examples and parameters.
š Documentation
ā ļø Documentation updates in progress
- š Installation Guide - Complete setup instructions for all MCP applications
- š Feature Guide - Complete list of features
- š Tools Reference - Detailed documentation for all 19 tools
- š„ Import & Merge Guide - Comprehensive guide for Phase 3 features š
- š Search & Query Guide - Advanced search features and natural language queries
- šļø Usage Examples - Real-world workflows and practical use cases
- āļø Data Format Specification - Technical details and file formats
- š ļø Troubleshooting - Common issues and solutions
š If you find this project helpful, consider:
- š Starring the repository on GitHub
- š¤ Support Development
- š Reporting bugs and suggesting features
MIT License - see LICENSE file for details.
|
MEMCORD v2.2 (mcp server)This privacy-first, self-hosted MCP server helps you organize chat history, summarize messages, search across past chats with AI ā and keeps everything secure and fully under your control. |
Never Lose Context Again
Transform your Claude conversations into a searchable, organized knowledge base that grows with you
⨠Core Benefits
- š§ Infinite Memory - Claude remembers everything across unlimited conversations with intelligent auto-summarization
- š Your Data, Your Control - 100% local storage with zero cloud dependencies or privacy concerns
- šÆ Effortless Organization - Smart tags and folders that organize themselves around your workflow
- š Intelligent Merging - Automatically combines related conversations while eliminating duplicates
š What's new in v2.2.0
- ā
Timeline Navigation -
memcord_select_entry - ā
ESimplified Slot Activation -
memcord_use - ā
Memory Integration Promoted -
memcord_merge
š Quick Start
curl -fsSL https://github.com/ukkit/memcord/raw/main/install.sh | bash
This will:
- Download and setup memcord
- Set Up Python Virtual Environment using uv
- Update claude_desktop_config.json & README.md with Installation Path
Claude Desktop/VSCode
{
"mcpServers": {
"memcord": {
"command": "uv",
"args": [
"--directory",
"</path/to/memcord>",
"run",
"memcord"
],
"env": {
"PYTHONPATH": "</path/to/memcord/>/src"
}
}
}
}
Claude Code MCP
Add MCP server for your project - check README.md for installation path
claude mcp add-json memcord '{"type":"stdio","command":"uv","args":["--directory","</path/to/memcord>","run","memcord"],"env":{"PYTHONPATH":"</path/to/memcord>/src"}}'
Verify installation
claude mcp list
claude mcp get memcord
Add at top of your CLAUDE.md file
memcord_name "NAME_OF_YOUR_PROJECT"
Manual Installaion
# Traditional installation method
git clone https://github.com/ukkit/memcord.git
cd memcord
uv venv
source .venv/bin/activate
uv pip install -e .
# Replace </path/to/memcord/> in claude_desktop_config.json to the path where you installed it manually
Complete Installation Guide - Detailed setup for Claude Code, Claude Desktop, and other MCP applications.
š» Basic Usage
# Create a memory slot and save conversation
memcord_name "project_meeting"
memcord_save "Our discussion about the new API design..."
memcord_save_progress
# Use existing memory slot
memcord_use "project_meeting" š
# Navigate timeline - select specific entries
memcord_select_entry "2 hours ago" # or "latest", index, timestamp š
# Privacy control - activate zero mode (no saving)
memcord_zero # No memory will be saved until switched to another slot
# Search and query your memories
memcord_search "API design decisions"
memcord_query "What did we decide about authentication?"
# Merge related conversations
memcord_merge ["project_meeting", "api_notes"] "consolidated_project" š
Refer to š Complete Tools Reference for Advanced Mode and detailed documentation for all 19 tools with examples and parameters.
š Documentation
ā ļø Documentation updates in progress
- š Installation Guide - Complete setup instructions for all MCP applications
- š Feature Guide - Complete list of features
- š Tools Reference - Detailed documentation for all 19 tools
- š„ Import & Merge Guide - Comprehensive guide for Phase 3 features š
- š Search & Query Guide - Advanced search features and natural language queries
- šļø Usage Examples - Real-world workflows and practical use cases
- āļø Data Format Specification - Technical details and file formats
- š ļø Troubleshooting - Common issues and solutions
š If you find this project helpful, consider:
- š Starring the repository on GitHub
- š¤ Support Development
- š Reporting bugs and suggesting features
MIT License - see LICENSE file for details.
Related MCP Servers
markitdown-mcp
Python tool for converting files and office documents to Markdown.
fetch
Model Context Protocol Servers
memory
Model Context Protocol Servers
mindsdb
AI Analytics Engine that can answer questions over large scale data. - The only MCP Server you'll ever need
fastmcp
š The fast, Pythonic way to build MCP servers and clients
screenpipe
AI app store powered by 24/7 desktop history. open source | 100% local | dev friendly | 24/7 screen, mic recording
