Claude Code Conversation History
FreeNot checkedEnables Claude Code to search, browse, and read its own past conversation history across all projects using BM25 keyword search.
About
Enables Claude Code to search, browse, and read its own past conversation history across all projects using BM25 keyword search.
README
NPM Version NPM Downloads CI Status MIT Licensed
MCP Claude Code Conversation History
A Model Context Protocol (MCP) server that gives Claude Code access to its own conversation history. Search, browse, and read past conversations across all projects using BM25 keyword search.
Overview
Every Claude Code session starts fresh — you can't ask "what did we discuss about auth last week?" or "show me that refactoring conversation". Your conversation history sits in JSONL files on disk, invisible to Claude.
MCP Claude Code Conversation History indexes those files and exposes them through a single MCP tool, so Claude can search and read its own past conversations.
Key Features:
- BM25 Search - Keyword search with relevance ranking via MiniSearch
- Cross-Project - Search across all Claude Code projects at once
- Background Indexing - Server starts immediately, indexes in the background
- Zero Config - Reads directly from
~/.claude/projects/, no setup needed
Installation
Via npm (Recommended)
npm install -g mcp-claude-code-conversation-history
From Source
git clone https://github.com/Stefan-Nitu/mcp-claude-code-conversation-history.git
cd mcp-claude-code-conversation-history
bun install
bun run build
Requires Bun v1.3.8+ (development) and Node.js v20+ (runtime)
Add a CLAUDE.md hint
MCP tools are deferred (loaded on-demand), so Claude may not use them automatically. Add this to your project's CLAUDE.md to ensure it does:
## Conversation History
You have access to past conversation history via MCP. Always use it when the user asks about previous work, past sessions, or anything from a prior conversation.
Quick Start
With Claude Code
Add to ~/.claude.json:
{
"mcpServers": {
"mcp-claude-code-conversation-history": {
"command": "npx",
"args": ["-y", "mcp-claude-code-conversation-history"]
}
}
}
Or if installed globally:
{
"mcpServers": {
"mcp-claude-code-conversation-history": {
"command": "mcp-claude-code-conversation-history"
}
}
}
Restart Claude Code to pick up the new server.
With Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-claude-code-conversation-history": {
"command": "npx",
"args": ["-y", "mcp-claude-code-conversation-history"]
}
}
}
With MCP Inspector
Test the server interactively:
npx @modelcontextprotocol/inspector npx -y mcp-claude-code-conversation-history
Available Actions
The server exposes 1 tool (claude_code_conversation_history) with 4 actions:
| Action | Description | Required Params | Optional Params |
|---|---|---|---|
| stats | Overview of all conversations and projects | — | — |
| list | Browse conversations by project/date | — | project, after, before, limit |
| search | BM25 keyword search across all history | query |
project, limit |
| read | Read full conversation by session ID | session_id |
offset, limit |
Parameters Reference
| Parameter | Type | Description |
|---|---|---|
action |
string |
Required. One of: search, list, read, stats |
query |
string |
Search keywords (required for search) |
session_id |
string |
Session ID from search/list results (required for read) |
project |
string |
Filter by project name (partial match) |
after |
string |
Only show conversations after this ISO date |
before |
string |
Only show conversations before this ISO date |
limit |
number |
Maximum number of results |
offset |
number |
Skip first N messages (for read pagination) |
Example Usage
Get an overview
{ "action": "stats" }
Returns total conversations, messages, and per-project breakdown.
Browse recent conversations in a project
{ "action": "list", "project": "my-app", "limit": 5 }
Search for a topic
{ "action": "search", "query": "authentication migration", "limit": 5 }
Returns ranked results with matching message snippets.
Read a full conversation
{ "action": "read", "session_id": "abc-123-def", "limit": 20 }
Use session_id from search or list results. Supports pagination with offset/limit.
Response Format
All actions return structured JSON:
{
"action": "search",
"query": "auth",
"results": [
{
"sessionId": "abc-123",
"project": "-Users-me-Projects-my-app",
"cwd": "/Users/me/Projects/my-app",
"score": 42.5,
"matches": [
{
"type": "user",
"content": "fix the authentication bug...",
"timestamp": "2026-03-20T10:00:00.000Z"
}
]
}
]
}
How It Works
- On startup, reads Claude Code's JSONL conversation files from
~/.claude/projects/ - Parses user and assistant messages, filtering noise (thinking blocks, tool calls, system messages, meta content)
- Deduplicates streamed assistant messages
- Indexes all messages with MiniSearch (BM25 ranking)
- Server starts immediately — indexing happens in the background
- If called before indexing completes, returns progress status
Development
Project Structure
mcp-claude-code-conversation-history/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── types.ts # Shared type definitions
│ ├── core/
│ │ ├── conversation-parser.ts # JSONL parsing and content extraction
│ │ ├── conversation-store.ts # Conversation discovery and loading
│ │ └── search-index.ts # BM25 search via MiniSearch
│ ├── tools/
│ │ ├── definitions.ts # Zod schema for tool parameters
│ │ └── handler.ts # Action routing and response formatting
│ └── utils/
│ └── logger.ts # Pino logger (stderr only)
├── tests/
│ ├── conversation-parser.test.ts
│ ├── conversation-store.test.ts
│ ├── search-index.test.ts
│ └── tools.test.ts
└── docs/ # Architecture & testing docs
Testing
# Run all tests
bun test
# Run in watch mode
bun test --watch
# Type checking
bun run typecheck
# Linting
bun run lint
# Full check (typecheck + lint)
bun run check
Requirements
- Node.js >= 20.0.0
- Claude Code conversation files in
~/.claude/projects/
Troubleshooting
Server Not Starting
If the tool doesn't appear in Claude Code:
- Check
~/.claude.jsonhas the correct MCP server configuration - Restart Claude Code after adding the configuration
- Check stderr logs for error messages
No Conversations Found
If stats shows 0 conversations:
- Verify
~/.claude/projects/exists and contains JSONL files - Check that you have Claude Code conversation history
- The server only indexes top-level JSONL files (subagent files are skipped)
Search Not Finding Expected Results
BM25 search works best with specific nouns and terms:
- Use specific keywords, not generic phrases
- Try different terms that might appear in the conversation
- Use the
projectfilter to narrow results - Check
listaction to confirm the conversation exists
Contributing
- Fork the repository
- Create a feature branch
- Write tests first (TDD approach)
- Implement the feature
- Ensure all tests pass (
bun test) - Run linting (
bun run lint) - Submit a pull request
License
MIT
Related Projects
- Model Context Protocol - MCP specification and documentation
- MCP TypeScript SDK - SDK used by this server
- MCP Refactor TypeScript - MCP server for TypeScript refactoring
from github.com/Stefan-Nitu/mcp-claude-code-conversation-history
Installing Claude Code Conversation History
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Stefan-Nitu/mcp-claude-code-conversation-historyFAQ
Is Claude Code Conversation History MCP free?
Yes, Claude Code Conversation History MCP is free — one-click install via Unyly at no cost.
Does Claude Code Conversation History need an API key?
No, Claude Code Conversation History runs without API keys or environment variables.
Is Claude Code Conversation History hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Claude Code Conversation History in Claude Desktop, Claude Code or Cursor?
Open Claude Code Conversation History on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
by duxiaohuiSupabase
Database, auth and storage
by SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Claude Code Conversation History with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
