MCP Server
Active
MIT
io.github.constripacity/claude-replay MCP Server
io.github.constripacity/claude-replay
What is the io.github.constripacity/claude-replay MCP server?
Session checkpoint & recovery for Claude Code: resume, search, tag, and export recorded sessions.
How to install io.github.constripacity/claude-replay
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
CLAUDE_REPLAY_DBSQLite database path (default: ~/.claude-replay/sessions.db). Point HTTP and stdio instances at the same path to share recorded sessions.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"claude-replay": {
"command": "uvx",
"args": [
"claude-replay",
"mcp"
],
"env": {
"CLAUDE_REPLAY_DB": "<YOUR_CLAUDE_REPLAY_DB>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"claude-replay": {
"command": "uvx",
"args": [
"claude-replay",
"mcp"
],
"env": {
"CLAUDE_REPLAY_DB": "<YOUR_CLAUDE_REPLAY_DB>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"claude-replay": {
"command": "uvx",
"args": [
"claude-replay",
"mcp"
],
"env": {
"CLAUDE_REPLAY_DB": "<YOUR_CLAUDE_REPLAY_DB>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"claude-replay": {
"type": "stdio",
"command": "uvx",
"args": [
"claude-replay",
"mcp"
],
"env": {
"CLAUDE_REPLAY_DB": "<YOUR_CLAUDE_REPLAY_DB>"
}
}
}
}Claude Code
claude mcp add claude-replay --env CLAUDE_REPLAY_DB=<YOUR_CLAUDE_REPLAY_DB> -- uvx claude-replay mcpRelated MCP servers
MCP relay so Claude Code agents on different machines can exchange messages via named channels.
8
View repository →Python
MIT