Old Claude MCP — Communication skill for Claude Code
Local MCP server that indexes exported Claude chat history into SQLite FTS5 for context retrieval.
How to install Old Claude MCP
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open sneg55/old-claude-mcp and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Old Claude MCP does
Local MCP server that indexes exported Claude chat history into SQLite FTS5 for context retrieval.
Alternatives in Communication
- HolaOS — Open-source agentic workspace enterprises can make their own 10.9k ★
- Lark Coding Agent Bridge — Bot that bridges Feishu/Lark messenger with a local Claude Code or Codex CLI 2.4k ★
- Wechat Exporter — A Claude Code / Codex skill to export and decrypt WeChat (macOS) chat history into plaintext SQLite databases 208 ★
README
old-claude-mcp
[](LICENSE) [](https://github.com/sneg55/old-claude-mcp/stargazers)   
Anthropic lets you export your Claude conversation history but provides no way to import it into a new account. This is a local MCP server that makes the export actually useful — index your old conversations into SQLite and Claude can search them automatically in new sessions.
**Background:** [Claude lets you export your data but won't let you use it](https://sawinyh.com/blog/claude-export-no-import)
Why
If you switch Claude accounts, lose access to an email address, or just want your old context available going forward, you're stuck with a JSON file you can't do anything with. This tool indexes that file and exposes it as three MCP tools Claude calls automatically during conversations.
Setup
**1. Export your Claude history**
Go to claude.ai → Settings → Export Data. You'll get a ZIP containing `conversations.json`.
**2. Install dependencies**
git clone https://github.com/sneg55/old-claude-mcp
cd old-claude-mcp
pip install -r requirements.txt
**3. Index your export**
python indexer.py ~/Downloads/conversations.json --db history.db
**4. Add to Claude Desktop config**
Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
{
"mcpServers": {
"chat-history": {
"command": "/usr/local/bin/python3",
"args": [
"/path/to/old-claude-mcp/server.py",
"--db",
"/path/to/old-claude-mcp/history.db"
]
}
}
}
Use an absolute path to your Python interpreter. Find it with `which python3`.
**5. Rest
Related Skills
Discord CLI
Discord CLI + MCP server that runs as your own user account — read, send, search, and manage any server/DM you
Imessage MCP
macOS-only iMessage MCP server for Claude Code. Direct chat.db read, voice-note transcription, FTS5 search, Ap
Appdock
Starter kit for agent-built local apps on Mac: zero-dependency localhost server, SQLite seam, incident-hardene
Ferry
Copy or move a chat from a Claude Code account you're signed out of into the one you're using now — Claude pic
Claude Code Chat Explorer
Browse, search, and explore your Claude Code conversation history with a fast SQLite-powered web interface
Deal Tracker
Builds a relationship or deal summary using the Superhuman Mail MCP server — pulling together all email histor
Related Agents
Shine Data Engineer
Local data analysis via DuckDB/SQLite MCP — SQL on CSV/Parquet/JSON/Excel without cloud services. Produces cha
Feature Crew Reviewer
Code reviewer. Spawned with fresh context — no memory of build. Reads spec.md, design.md, ADRs, and the diff o
Visual Inspector
Verifies a static HTML slide deck renders correctly using Playwright MCP. Starts a local HTTP server, navigate