Skip to main content

MCP server for Claude session management and conversation memory

Project description

Session Management MCP Server

Code style: crackerjack Python: 3.13+ Coverage

A dedicated MCP server that provides comprehensive session management functionality for Claude Code sessions across any project.

Features

  • 🚀 Session Initialization: Complete setup with UV dependency management, project analysis, and automation tools
  • 🔍 Quality Checkpoints: Mid-session quality monitoring with workflow analysis and optimization recommendations
  • 🏁 Session Cleanup: Comprehensive cleanup with learning capture and handoff file creation
  • 📊 Status Monitoring: Real-time session status and project context analysis
  • ⚡ Auto-Generated Shortcuts: Automatically creates /start, /checkpoint, and /end Claude Code slash commands

🚀 Automatic Session Management (NEW!)

For Git Repositories:

  • Automatic initialization when Claude Code connects
  • Automatic cleanup when session ends (quit, crash, or network failure)
  • Intelligent auto-compaction during checkpoints
  • Zero manual intervention required

For Non-Git Projects:

  • 📝 Use /start for manual initialization
  • 📝 Use /end for manual cleanup
  • 📝 Full session management features available on-demand

The server automatically detects git repositories and provides seamless session lifecycle management with crash resilience and network failure recovery. Non-git projects retain manual control for flexible workflow management.

Available MCP Tools

This server provides 79+ specialized tools organized into 11 functional categories. For a complete list of tools, see the MCP Tools Reference.

Core Session Management:

  • start - Comprehensive session initialization with project analysis and memory setup
  • checkpoint - Mid-session quality assessment with workflow analysis
  • end - Complete session cleanup with learning capture
  • status - Current session overview with health checks
  • permissions - Manage trusted operations to reduce permission prompts

Memory & Conversation Search:

  • reflect_on_past - Semantic search through past conversations using local AI embeddings
  • store_reflection - Store insights with tagging and embeddings
  • quick_search - Fast overview search with count and top results
  • get_more_results - Pagination support for large result sets

Knowledge Graph (DuckPGQ):

All tools use local processing for privacy, with DuckDB vector storage (FLOAT[384] embeddings) and ONNX-based semantic search requiring no external API calls.

🚀 Integration with Crackerjack

Session-mgmt includes deep integration with Crackerjack, the AI-driven Python development platform:

Key Features:

  • 📊 Quality Metrics Tracking: Automatically captures and tracks quality scores over time
  • 🧪 Test Result Monitoring: Learns from test patterns, failures, and successful fixes
  • 🔍 Error Pattern Recognition: Remembers how specific errors were resolved and suggests solutions

Example Workflow:

  1. 🚀 Session-mgmt start - Sets up your session with accumulated context from previous work
  2. 🔧 Crackerjack runs quality checks and applies AI agent fixes to resolve issues
  3. 💾 Session-mgmt captures successful patterns and error resolutions
  4. 🧠 Next session starts with all accumulated knowledge

For detailed information on Crackerjack integration, see Crackerjack Integration Guide.

Installation

From Source

# Clone the repository
git clone https://github.com/lesleslie/session-mgmt-mcp.git
cd session-mgmt-mcp

# Install with all dependencies (development + testing)
uv sync --group dev

# Or install minimal production dependencies only
uv sync

# Or use pip (for production only)
pip install session-mgmt-mcp

MCP Configuration

Add to your project's .mcp.json file:

{
  "mcpServers": {
    "session-mgmt": {
      "command": "python",
      "args": ["-m", "session_mgmt_mcp.server"],
      "cwd": "/path/to/session-mgmt-mcp",
      "env": {
        "PYTHONPATH": "/path/to/session-mgmt-mcp"
      }
    }
  }
}

Alternative: Use Script Entry Point

If installed with pip/uv, you can use the script entry point:

{
  "mcpServers": {
    "session-mgmt": {
      "command": "session-mgmt-mcp",
      "args": [],
      "env": {}
    }
  }
}

Dependencies: Requires Python 3.13+. For a complete list of dependencies, see pyproject.toml. Recent changes include pinning FastAPI to <0.121.0 to prevent circular import bugs and removing sitecustomize.py for improved startup reliability.

Usage

Once configured, the following slash commands become available in Claude Code:

Primary Session Commands:

  • /session-mgmt:start - Full session initialization
  • /session-mgmt:checkpoint - Quality monitoring checkpoint with scoring
  • /session-mgmt:end - Complete session cleanup with learning capture
  • /session-mgmt:status - Current status overview with health checks

Auto-Generated Shortcuts: After running /session-mgmt:start once, these shortcuts are automatically created:

  • /start/session-mgmt:start
  • /checkpoint [name]/session-mgmt:checkpoint
  • /end/session-mgmt:end

These shortcuts are created in ~/.claude/commands/ and work across all projects

Memory & Search Commands:

  • /session-mgmt:reflect_on_past - Search past conversations with semantic similarity
  • /session-mgmt:store_reflection - Store important insights with tagging
  • /session-mgmt:quick_search - Fast search with overview results
  • /session-mgmt:permissions - Manage trusted operations

For running the server directly in development mode:

python -m session_mgmt_mcp.server
# or
session-mgmt-mcp

Memory System

Built-in Conversation Memory:

  • Local Storage: DuckDB database at ~/.claude/data/reflection.duckdb
  • Embeddings: Local ONNX models for semantic search (no external API needed)
  • Privacy: Everything runs locally with no external dependencies
  • Cross-Project: Conversations tagged by project context for organized retrieval

Search Capabilities:

  • Semantic Search: Vector similarity matching with customizable thresholds
  • Time Decay: Recent conversations prioritized in results
  • Filtering: Search by project context or across all projects

Data Storage

This server manages its data locally in the user's home directory:

  • Memory Storage: ~/.claude/data/reflection.duckdb
  • Session Logs: ~/.claude/logs/
  • Configuration: Uses pyproject.toml and environment variables

Recommended Session Workflow

  1. Initialize Session: /session-mgmt:start - Sets up project context, dependencies, and memory system
  2. Monitor Progress: /session-mgmt:checkpoint (every 30-45 minutes) - Quality scoring and optimization
  3. Search Past Work: /session-mgmt:reflect_on_past - Find relevant past conversations and solutions
  4. Store Important Insights: /session-mgmt:store_reflection - Capture key learnings for future sessions
  5. End Session: /session-mgmt:end - Final assessment, learning capture, and cleanup

Benefits

Comprehensive Coverage

  • Session Quality: Real-time monitoring and optimization
  • Memory Persistence: Cross-session conversation retention
  • Project Structure: Context-aware development workflows

Reduced Friction

  • Single Command Setup: One /session-mgmt:start sets up everything
  • Local Dependencies: No external API calls or services required
  • Intelligent Permissions: Reduces repeated permission prompts
  • Automated Workflows: Structured processes for common tasks

Enhanced Productivity

  • Quality Scoring: Guides session effectiveness
  • Built-in Memory: Enables building on past work automatically
  • Project Templates: Accelerates development setup
  • Knowledge Persistence: Maintains context across sessions

Documentation

Complete documentation is available in the docs/ directory:

Troubleshooting

Common Issues:

  • Memory/embedding issues: Ensure all dependencies are installed with uv sync
  • Path errors: Verify cwd and PYTHONPATH are set correctly in .mcp.json
  • Permission issues: Use /session-mgmt:permissions to trust operations

Debug Mode:

# Run with verbose logging
PYTHONPATH=/path/to/session-mgmt-mcp python -m session_mgmt_mcp.server --debug

For more detailed troubleshooting guidance, see Troubleshooting Guide.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

session_mgmt_mcp-0.9.3.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

session_mgmt_mcp-0.9.3-py3-none-any.whl (369.8 kB view details)

Uploaded Python 3

File details

Details for the file session_mgmt_mcp-0.9.3.tar.gz.

File metadata

  • Download URL: session_mgmt_mcp-0.9.3.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for session_mgmt_mcp-0.9.3.tar.gz
Algorithm Hash digest
SHA256 c69ed5e40fc7dd84e05516610d9d14cfa1f1220dd7b1f9fafe2ec88c3f35beee
MD5 6bc564fe10e761431061cbf7b0b3c3eb
BLAKE2b-256 a561a3722795fbdcd5c613dde620d459a1bfde7cc12b22bbf51996ad79d4a5b0

See more details on using hashes here.

File details

Details for the file session_mgmt_mcp-0.9.3-py3-none-any.whl.

File metadata

  • Download URL: session_mgmt_mcp-0.9.3-py3-none-any.whl
  • Upload date:
  • Size: 369.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for session_mgmt_mcp-0.9.3-py3-none-any.whl
Algorithm Hash digest
SHA256 77c07b8597eeee62c7048dc5cb9bbf4eb18f2e14e0641f32599931ef6f2ed27f
MD5 4e36d4935809756f3cb9f03338954123
BLAKE2b-256 265c8f00efc6f589927edc573062b2974f24d8783456d3cdc5954edec84a9fe4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page