sneg55

Old Claude MCP — Communication skill for Claude Code

Communication community

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://img.shields.io/github/license/sneg55/old-claude-mcp)](LICENSE) [![Stars](https://img.shields.io/github/stars/sneg55/old-claude-mcp)](https://github.com/sneg55/old-claude-mcp/stargazers) ![Python](https://img.shields.io/badge/Python-3776AB?logo=python&logoColor=fff) ![MCP](https://img.shields.io/badge/MCP-000000?logo=modelcontextprotocol&logoColor=fff) ![SQLite](https://img.shields.io/badge/SQLite-003B57?logo=sqlite&logoColor=fff)

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