Skip to main content

A Model Context Protocol server for personal journaling with context awareness, relationships, and visualization

Project description

Memory Journal MCP Server

Last Updated October 26, 2025 - Production/Stable v1.2.1

GitHub Docker Pulls License: MIT Version Status MCP Registry PyPI Security CodeQL Type Safety

A production-ready developer journal with knowledge graphs, visual relationship mapping, and intelligent search

๐ŸŽ‰ Now Production/Stable! Memory Journal has graduated from beta with powerful relationship mapping, 10x faster startup, and comprehensive documentation.

๐Ÿš€ Quick Deploy:

๐Ÿ“š Full Documentation: GitHub Wiki

๐Ÿ“ฐ Read the v1.1.2 Release Article - Learn about knowledge graphs, performance optimizations, and relationship mapping


โœจ What's New in v1.2.1 (Patch Release - October 26, 2025)

๐Ÿ› Critical Bug Fix: Semantic Search Initialization

Fixed a critical async/lazy loading race condition that could cause semantic search to hang on first use:

  • First semantic_search now completes in <1 second (was: could timeout after 30+ seconds)
  • Eliminated async lock deadlocks during ML model loading
  • Enhanced thread pool from 2 to 4 workers for better concurrent operations
  • No more need to cancel and retry - reliable semantic search on every server restart

This patch release maintains full compatibility with v1.2.0 - simply upgrade and restart your MCP client.


โœจ What's New in v1.2.0 (Organization Support)

๐Ÿข Organization-Level GitHub Projects - Team Collaboration Ready

Full support for organization-level projects alongside user projects:

  • Automatic Owner Detection - Detects whether repo belongs to user or organization
  • Dual Project Lookup - Shows both user and org projects in context
  • Org Project Analytics - All features work seamlessly with org projects
  • Separate Token Support - Optional GITHUB_ORG_TOKEN for org-specific permissions
  • Zero Breaking Changes - Fully backward compatible

๐Ÿ”ง Enhanced Features for Organizations

All advanced project analytics now support org projects:

  • Cross-Project Insights - Analyze patterns across user AND org projects
  • Status Summaries - Comprehensive reports for org project teams
  • Milestone Tracking - Track org-level milestones and team velocity
  • Project Timelines - Combined journal + GitHub activity for org projects
  • Smart Caching - 80%+ API reduction for both user and org projects (24hr owner type cache, 1hr project cache)

๐Ÿ“Š Advanced Project Analytics - Deep Insights Across Projects

  • Cross-Project Insights - Analyze patterns across all tracked projects
  • Project Breakdown - Time distribution and activity analysis per project
  • Velocity Tracking - Measure productivity with entries per week
  • Smart Caching - 80%+ reduction in API calls with intelligent caching (1hr TTL)
  • Inactive Project Detection - Automatically identify projects needing attention

๐Ÿ“ˆ Project Status & Milestone Tracking

  • Status Summary Prompt - Comprehensive project reports with GitHub data integration
  • Milestone Tracker - Progress visualization with velocity charts
  • Project Timeline Resource - Live activity feed combining journal + GitHub events
  • Item Status Monitoring - Track completion rates and project item states

๐Ÿ”— GitHub Projects Integration - Enhanced Context Awareness

Seamlessly connect your journal entries with GitHub Projects:

  • Automatic Project Detection - Detects GitHub Projects associated with current repository (user & org)
  • Active Work Items - Shows what you're actively working on from projects
  • Entry-Project Linking - Associate journal entries with specific projects and items
  • Project Filtering - Search and filter entries by project number
  • Graceful Degradation - Works perfectly without GitHub token (features degrade gracefully)

๐ŸŽ‰ v1.2.0 - Capabilities

Building on the stable v1.1.3 foundation:

  • 16 MCP tools (up from 15) - Added get_cross_project_insights
  • 10 workflow prompts (up from 8) - Added project-status-summary and project-milestone-tracker
  • 4 MCP resources (up from 3) - Added memory://projects/{number}/timeline
  • Smart caching system - GitHub API response caching with configurable TTLs
  • Enhanced analytics - Project breakdown support in get_statistics
  • Backward compatible - Seamless upgrade from v1.1.x with automatic schema migration

๐Ÿ”— Entry Relationships & Knowledge Graphs

Build connections between your entries with typed relationships:

  • references - General connections between work
  • implements - Link implementations to specs/designs
  • clarifies - Add explanations and elaborations
  • evolves_from - Track how ideas develop over time
  • response_to - Thread conversations and replies

๐Ÿ“Š Visual Relationship Mapping

Generate beautiful Mermaid diagrams showing how your work connects:

graph TD
    E55["#55: Implementing visualization feature<br/>development_note"]
    E56["#56: Testing the new tool<br/>technical_note"]
    E57["#57: Documentation improvements<br/>enhancement"]
    
    E56 ==>|implements| E55
    E57 -.->|clarifies| E55
    
    style E55 fill:#FFF3E0
    style E56 fill:#FFF3E0
    style E57 fill:#FFF3E0

โšก Performance Revolution

  • 10x faster startup - Lazy loading reduces init time from 14s โ†’ 2-3s
  • Thread-safe operations - Zero race conditions in concurrent tag creation
  • Database lock prevention - Single-connection transactions eliminate conflicts
  • Optimized queries - Strategic indexes for relationship traversal

๐Ÿ› ๏ธ New Tools (15 Total, +2 from v1.0)

  • visualize_relationships - Generate Mermaid diagrams with depth control
  • link_entries - Create typed relationships between entries
  • Plus comprehensive CRUD, triple search, analytics, and export

๐ŸŽฏ Enhanced Workflow Prompts (8 Total, +2 from v1.0)

  • find-related - Discover connected entries via semantic similarity
  • prepare-standup - Daily standup summaries
  • prepare-retro - Sprint retrospectives
  • weekly-digest - Day-by-day weekly summaries
  • analyze-period - Deep period analysis with insights
  • goal-tracker - Milestone and achievement tracking
  • get-context-bundle - Project context with Git/GitHub
  • get-recent-entries - Formatted recent entries

๐Ÿ“ก New Resources (3 Total, +1 from v1.0)

  • memory://graph/recent - NEW Live Mermaid diagram of recent relationships
  • memory://recent - 10 most recent entries
  • memory://significant - Significant milestones and breakthroughs

๐Ÿ—„๏ธ Database Improvements

  • Automatic schema migrations (seamless v1.0 โ†’ v1.1 upgrades)
  • Soft delete support with deleted_at column
  • New relationships table with cascading deletes
  • Enhanced indexes for optimal query performance

๐Ÿš€ Quick Start

Option 1: PyPI (Fastest - 30 seconds)

Step 1: Install the package

pip install memory-journal-mcp

Step 2: Add to ~/.cursor/mcp.json

{
  "mcpServers": {
    "memory-journal": {
      "command": "memory-journal-mcp"
    }
  }
}

Step 3: Restart Cursor

Restart Cursor or your MCP client, then start journaling!

Option 2: Docker (Full Features - 2 minutes)

Step 1: Pull the Docker image

docker pull writenotenow/memory-journal-mcp:latest

Step 2: Create data directory

mkdir data

Step 3: Add to ~/.cursor/mcp.json

{
  "mcpServers": {
    "memory-journal": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i", 
        "-v", "./data:/app/data",
        "writenotenow/memory-journal-mcp:latest",
        "python", "src/server.py"
      ]
    }
  }
}

Step 4: Restart Cursor

Restart Cursor or your MCP client, then start journaling!


โšก Install to Cursor IDE

One-Click Installation

Click the button below to install directly into Cursor:

Install to Cursor

Or copy this deep link:

cursor://anysphere.cursor-deeplink/mcp/install?name=Memory%20Journal%20MCP&config=eyJtZW1vcnktam91cm5hbCI6eyJhcmdzIjpbInJ1biIsIi0tcm0iLCItaSIsIi12IiwiLi9kYXRhOi9hcHAvZGF0YSIsIndyaXRlbm90ZW5vdy9tZW1vcnktam91cm5hbC1tY3A6bGF0ZXN0IiwicHl0aG9uIiwic3JjL3NlcnZlci5weSJdLCJjb21tYW5kIjoiZG9ja2VyIn19

Prerequisites

  • โœ… Docker installed and running
  • โœ… ~500MB disk space for data directory

Configuration

After installation, Cursor will use this Docker-based configuration. If you prefer manual setup, add this to your ~/.cursor/mcp.json:

{
  "memory-journal": {
    "command": "docker",
    "args": [
      "run", "--rm", "-i",
      "-v", "./data:/app/data",
      "writenotenow/memory-journal-mcp:latest",
      "python", "src/server.py"
    ]
  }
}

๐Ÿ“– See Full Installation Guide โ†’


๐Ÿ“‹ Core Capabilities

๐Ÿ› ๏ธ 16 MCP Tools - Complete Development Workflow

Entry Management:

  • create_entry / create_entry_minimal - Create entries with auto-context and GitHub Projects linking
  • update_entry - Edit existing entries (thread-safe)
  • delete_entry - Soft or permanent deletion
  • get_entry_by_id - Retrieve with full relationship details and project info

Search & Discovery:

  • search_entries - FTS5 full-text search with highlighting and project filtering
  • search_by_date_range - Time-based filtering with tags and projects
  • semantic_search - ML-powered similarity (optional)
  • get_recent_entries - Quick access to recent work

Relationships & Visualization:

  • link_entries - Create typed relationships
  • visualize_relationships - Generate Mermaid diagrams

Organization & Analytics:

  • list_tags - Tag usage statistics
  • get_statistics - Comprehensive analytics by time period with project breakdown
  • get_cross_project_insights - NEW - Cross-project pattern analysis
  • export_entries - JSON/Markdown export
  • test_simple - Connectivity testing

๐ŸŽฏ 10 Workflow Prompts - Automated Productivity

  • prepare-standup - Daily standup summaries from recent entries
  • prepare-retro - Sprint retrospectives with achievements and learnings
  • weekly-digest - Day-by-day weekly summaries
  • analyze-period - Deep analysis with pattern insights
  • goal-tracker - Milestone and achievement tracking
  • find-related - Discover connected entries via semantic similarity
  • get-context-bundle - Complete project context (Git + GitHub)
  • get-recent-entries - Formatted display of recent work
  • project-status-summary - NEW - Comprehensive GitHub Project status reports
  • project-milestone-tracker - NEW - Milestone progress with velocity tracking

๐Ÿ” Triple Search System - Find Anything, Any Way

  1. Full-text search - SQLite FTS5 with result highlighting and rank ordering
  2. Date range search - Time-based filtering with tag and type filters
  3. Semantic search - FAISS vector similarity for concept-based discovery (optional)

๐Ÿ”— Entry Relationships - Build Your Knowledge Graph

  • 5 relationship types - references, implements, clarifies, evolves_from, response_to
  • Bidirectional linking - See both incoming and outgoing relationships
  • Graph visualization - Generate Mermaid diagrams with depth control
  • Smart discovery - Find related entries via semantic similarity and shared tags

๐Ÿ“Š Comprehensive Analytics - Track Your Progress

  • Entry counts by type (achievements, notes, milestones, etc.)
  • Top tags with usage statistics
  • Activity patterns by day/week/month
  • Significant milestone tracking
  • Export-ready statistics for reports

๐ŸŽจ Visual Relationship Graphs - See How Work Connects

  • 3 visualization modes - Entry-centric, tag-based, recent activity
  • Customizable depth - Control relationship traversal (1-3 hops)
  • Tag filtering - Focus on specific projects or topics
  • Color-coded nodes - Personal (blue) vs Project (orange) entries
  • Typed arrows - Different styles for different relationship types

๐Ÿ”„ Git & GitHub Integration - Automatic Context Capture

  • Repository name and path
  • Current branch
  • Latest commit (hash + message)
  • Recent GitHub issues (via gh CLI)
  • GitHub Projects - Automatic project detection and tracking (user & org)
  • Organization Support - Full support for org-level projects alongside user projects
  • Project Analytics - Cross-project insights, status summaries, milestone tracking (user & org)
  • Smart API Caching - 80%+ API call reduction (24hr owner type, 1hr projects, 15min items)
  • Timeline Resources - Combined journal + GitHub activity feeds for user & org projects
  • Auto Owner Detection - Automatically determines if repo belongs to user or organization
  • Working directory
  • Timestamp for all context

๐Ÿ“ฆ Data Export - Own Your Data

  • JSON format - Machine-readable with full metadata
  • Markdown format - Human-readable with beautiful formatting
  • Flexible filtering - By date range, tags, entry types, projects
  • Portable - Take your journal anywhere

๐Ÿ”ง Configuration & Setup

GitHub Projects Integration (Optional):

To enable GitHub Projects features, set the GITHUB_TOKEN environment variable:

# Linux/macOS
export GITHUB_TOKEN="your_github_personal_access_token"

# Windows PowerShell
$env:GITHUB_TOKEN="your_github_personal_access_token"

Organization Projects:

For organization-level projects, you can optionally use a separate token:

# Linux/macOS
export GITHUB_ORG_TOKEN="your_org_access_token"
export DEFAULT_ORG="your-org-name"  # Optional: default org for ambiguous contexts

# Windows PowerShell
$env:GITHUB_ORG_TOKEN="your_org_access_token"
$env:DEFAULT_ORG="your-org-name"

Required Scopes:

  • User projects: repo, project
  • Org projects: repo, project, read:org (minimum)
  • Full org features: Add admin:org for team info

Fallback Options:

  • Uses GitHub CLI (gh) if GITHUB_TOKEN is not available
  • Uses GITHUB_TOKEN if GITHUB_ORG_TOKEN not set
  • Works without GitHub token (project features gracefully disabled)
  • Auto-detects whether owner is user or organization

๐Ÿ“– Usage Examples

Create an Entry with GitHub Projects

// Create an entry linked to a GitHub Project
create_entry({
  content: "Completed Phase 1 of GitHub Projects integration - all core features implemented!",
  entry_type: "technical_achievement",
  tags: ["github-projects", "integration", "milestone"],
  project_number: 1,  // Links to GitHub Project #1
  significance_type: "technical_breakthrough"
})
// Context automatically includes GitHub Projects info

// Search entries by project
search_entries({
  project_number: 1,
  limit: 10
})

// Filter by project and date range
search_by_date_range({
  start_date: "2025-10-01",
  end_date: "2025-10-31",
  project_number: 1
})

Create an Entry with Relationships

// Create a technical achievement
create_entry({
  content: "Implemented lazy loading for ML dependencies - 10x faster startup!",
  entry_type: "technical_achievement",
  tags: ["performance", "optimization", "ml"],
  significance_type: "technical_breakthrough"
})
// Returns: Entry #55

// Link related work
link_entries({
  from_entry_id: 56,  // Testing entry
  to_entry_id: 55,    // Implementation
  relationship_type: "implements"
})

// Visualize the connections
visualize_relationships({
  entry_id: 55,
  depth: 2
})

Search and Analyze

// Full-text search with highlighting
search_entries({ query: "performance optimization", limit: 5 })

// Semantic search for concepts
semantic_search({ query: "startup time improvements", limit: 3 })

// Date range with tags
search_by_date_range({
  start_date: "2025-10-01",
  end_date: "2025-10-31",
  tags: ["performance"]
})

// Get analytics
get_statistics({ group_by: "week" })

Generate Visual Maps

// Visualize entry relationships
visualize_relationships({
  entry_id: 55,  // Root entry
  depth: 2       // 2 hops out
})

// Filter by tags
visualize_relationships({
  tags: ["visualization", "relationships"],
  limit: 20
})

// Access live graph resource
memory://graph/recent  // Most recent 20 entries with relationships

Advanced Project Features

// Cross-project insights
get_cross_project_insights({
  start_date: "2025-10-01",
  end_date: "2025-10-31",
  min_entries: 3
})
// Returns: Active projects ranked by activity, time distribution, productivity patterns, inactive projects

// Project statistics with breakdown
get_statistics({
  start_date: "2025-10-01",
  end_date: "2025-10-31",
  group_by: "week",
  project_breakdown: true
})
// Returns: Standard stats PLUS entries per project, active days per project

// Project status summary (prompt)
project-status-summary({
  project_number: 1,
  time_period: "sprint",  // week, sprint, month
  include_items: true
})
// Returns: Project overview, journal activity, GitHub items status, key insights

// Milestone tracking (prompt)
project-milestone-tracker({
  project_number: 1,
  milestone_name: "v1.2.0"  // optional filter
})
// Returns: Milestone progress, velocity chart, journal activity summary

// Access project timeline resource
memory://projects/1/timeline
// Returns: Chronological feed of last 30 days (journal + GitHub events)

Organization Project Support

// Create entry with explicit org project
create_entry({
  content: "Sprint planning meeting - discussed Q4 roadmap",
  entry_type: "technical_note",
  tags: ["sprint-planning", "Q4"],
  project_number: 5,
  project_owner: "my-company",
  project_owner_type: "org"
})

// Auto-detect works for org repos too! (detects owner type automatically)
create_entry({
  content: "Fixed critical bug in auth service",
  project_number: 5  // Owner and type auto-detected from repo context
})

// Org project status summary
project-status-summary({
  project_number: 5,
  owner: "my-company",
  owner_type: "org",
  time_period: "sprint",
  include_items: true
})
// Returns: Org project overview, team activity, GitHub items, insights

// Org milestone tracking
project-milestone-tracker({
  project_number: 5,
  owner: "my-company",
  owner_type: "org"
})
// Returns: Org milestone progress, team velocity, activity summary

// Access org project timeline (explicit format)
memory://projects/my-company/org/5/timeline
// Returns: Org project timeline with journal + GitHub events

// Access org project timeline (auto-detect format)
memory://projects/5/timeline
// Returns: Auto-detects if project belongs to org and fetches accordingly

// Cross-project insights automatically includes org projects
get_cross_project_insights({
  start_date: "2025-10-01",
  end_date: "2025-10-31"
})
// Returns: Insights across BOTH user and org projects

๐Ÿ—๏ธ Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ MCP Server Layer (Async/Await)                              โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”‚
โ”‚  โ”‚ Entry Creation  โ”‚  โ”‚ Triple Search   โ”‚  โ”‚ Relationshipโ”‚  โ”‚
โ”‚  โ”‚ with Context    โ”‚  โ”‚ FTS5/Date/ML    โ”‚  โ”‚ Mapping     โ”‚  โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Thread Pool Execution Layer                                 โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”‚
โ”‚  โ”‚ Git Operations  โ”‚  โ”‚ Database Ops    โ”‚  โ”‚ Lazy ML     โ”‚  โ”‚
โ”‚  โ”‚ (2s timeout)    โ”‚  โ”‚ Single Conn     โ”‚  โ”‚ Loading     โ”‚  โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ SQLite Database with FTS5 + Relationships                   โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”โ”‚
โ”‚  โ”‚ entries + tags + relationships + embeddings + FTS       โ”‚โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ”ง Technical Highlights

Performance & Security

  • Python 3.14 - Latest Python with free-threaded support (PEP 779), deferred annotations (PEP 649), and performance optimizations
  • 10x faster startup - Lazy loading of ML dependencies (2-3s vs 14s)
  • Thread-safe operations - Zero race conditions in tag creation
  • WAL mode - Better concurrency and crash recovery
  • Database lock prevention - Single-connection transactions
  • Aggressive timeouts - Git operations fail-fast (2s per command)
  • Input validation - Length limits, parameterized queries, SQL injection prevention

Semantic Search (Optional)

  • Model: all-MiniLM-L6-v2 (384-dimensional embeddings)
  • Storage: FAISS index for fast similarity search
  • Graceful degradation: Works perfectly without ML dependencies

Data & Privacy

  • Local-first: Single SQLite file, you own your data
  • Portable: Move your .db file anywhere
  • Secure: No external API calls, non-root Docker containers

๐Ÿ“š Documentation

Full documentation available on the GitHub Wiki:

GitHub Gists: Practical Examples & Use Cases

โ†’ View All Memory Journal Gists

Explore 5 curated gists with real-world examples and implementation patterns:

  1. Complete Feature Showcase - All 15 tools, 8 prompts, and 3 resources
  2. Relationship Mapping & Knowledge Graphs - Build knowledge graphs with typed relationships
  3. Triple Search System Guide - Master FTS5, date range, and semantic search
  4. Workflow Automation & Prompts - Standup, retrospectives, and weekly digests
  5. Git Integration & Context Capture - Automatic project context from Git and GitHub

๐Ÿ”— Resources


๐Ÿ“„ License

MIT License - See LICENSE file for details.

๐Ÿค Contributing

Built by developers, for developers. PRs welcome! See CONTRIBUTING.md for guidelines.

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

memory_journal_mcp-1.2.1.tar.gz (78.9 kB view details)

Uploaded Source

Built Distribution

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

memory_journal_mcp-1.2.1-py3-none-any.whl (46.1 kB view details)

Uploaded Python 3

File details

Details for the file memory_journal_mcp-1.2.1.tar.gz.

File metadata

  • Download URL: memory_journal_mcp-1.2.1.tar.gz
  • Upload date:
  • Size: 78.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for memory_journal_mcp-1.2.1.tar.gz
Algorithm Hash digest
SHA256 2a21e242697d1add481a26237703218b4943dc49b1a3b41d512a7eb7f6e9d94b
MD5 f2b5403de8f8f868b4537ff6f876232d
BLAKE2b-256 2a4b0eeaad48c54a1d0fd0363d93d40bd786ce66f43fe53e4c162986247f398d

See more details on using hashes here.

File details

Details for the file memory_journal_mcp-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for memory_journal_mcp-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 06ac742b341962ce6281be5e92e58bd5d34063683ab25cbc57520290df05e674
MD5 4f6f5ef21405dcefdd47c3be6f6ada30
BLAKE2b-256 ea2d4c5835a9a26d2270268689383b5a394635e3dced618375e23fd897d7ca03

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