An MCP (Model Context Protocol) server that provides tools for searching and analyzing Claude Code conversation history.
- List Projects: View all Claude Code projects with session counts
- List Sessions: Browse sessions for specific projects
- List Recent Sessions: Find recent conversations across all projects
- Analyze Sessions: Extract and analyze messages with role filtering
- Search Conversations: Search for specific terms with context windows and time ranges
- Get Message Details: Retrieve full content for specific messages
- Summarize Conversations: AI-powered summarization of daily conversations
- Install dependencies:
uv sync- Run the server:
uv run python server.py- Add to Claude Code MCP config (
~/.config/claude/mcp.json):
{
"servers": {
"cc-session-search": {
"command": ["uv", "run", "python", "server.py"],
"cwd": "/path/to/cc-session-search"
}
}
}- Standard Claude Code installation (searches
~/.claude/projects/) - Python 3.13+
- MCP 1.2.0+
The server provides the following tools:
Lists all Claude Code projects with session counts and recent activity.
Lists sessions for a specific project within the specified time range.
Lists recent sessions across all projects.
Extracts and analyzes messages from sessions with filtering options.
search_conversations(query, days_back=2, context_window=1, case_sensitive=False, project_filter=None)
Searches conversations for specific terms with context windows.
Retrieves full content for specific messages by session ID and indices.
The server is built using the official MCP Python SDK with low-level Server class for maximum control.
Key features:
- Efficient response handling with content truncation
- Metadata-first approach to minimize token usage
- Support for date ranges and filtering
- Cross-project search capabilities
MIT