MCP server for full-text search across Claude Code and Codex CLI conversation transcripts. Tantivy-backed, sub-50ms queries over 800K+ documents.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"transcript-search": {
"command": "cargo",
"args": [
"run",
"--",
"transcript-search"
]
}
}
}
Run in terminal:
claude mcp add transcript-search cargo run -- transcript-search
Add to .cursor/mcp.json:
{
"mcpServers": {
"transcript-search": {
"command": "cargo",
"args": [
"run",
"--",
"transcript-search"
]
}
}
}