Skip to main content
Glama

Smart Fork Detection

An MCP (Model Context Protocol) server for Claude Code that enables semantic search of past session transcripts and intelligent session forking. Never lose context again - find and resume from the most relevant previous conversation instantly.

Python 3.10+ License: MIT

Overview

Smart Fork Detection solves the "context loss" problem in AI-assisted development by maintaining a searchable vector database of all your Claude Code sessions. When you need to work on a similar task or continue where you left off, simply search your conversation history and fork from the most relevant session - with full context preserved.

Key Benefits:

  • Overcome Context Limits: Break free from the 200,000 token limit by intelligent session forking

  • Instant Context Recovery: Find relevant past conversations in seconds instead of re-explaining everything

  • Knowledge Reuse: Transform hundreds of isolated sessions into connected, searchable knowledge

  • Productivity Boost: Reduce context rebuilding time from minutes to seconds

Related MCP server: ClaudeHistoryMCP

Features

Core Capabilities

  • Semantic Search - AI-powered search across all your Claude Code sessions

  • Smart Session Forking - Resume from the most relevant conversation

  • Background Indexing - Automatic real-time indexing of new sessions

  • Project-Scoped Search - Filter results by project directory

  • Fork History Tracking - Keep track of recently forked sessions

Performance & Intelligence

  • Query Result Caching - 50%+ faster repeat searches

  • Embedding Cache - Skip re-computing embeddings for unchanged content

  • Preference Learning - Improves results based on your fork selections

  • Temporal Search - Find sessions by date ("last Tuesday", "2 weeks ago")

  • Multi-Threaded Indexing - 2-3x faster initial setup with parallel processing

Organization & Analysis

  • Session Tagging - Organize sessions with custom tags

  • Topic Clustering - Automatic grouping of related sessions (k-means)

  • Session Summaries - TF-IDF extractive summaries with key topics

  • Session Diff Tool - Semantic comparison between sessions

  • Duplicate Detection - Find similar sessions automatically

  • Session Archiving - Archive old sessions to separate database

Integrations

  • MCP Protocol - Native integration with Claude Code

  • VS Code Extension - Search and fork directly from VS Code (beta)

  • CLI Tools - Command-line access to all features

Table of Contents

Installation

Prerequisites

  • Python 3.10 or higher

  • Claude Code (with MCP support)

  • 1GB+ RAM recommended for embedding model

  • 500MB+ disk space for vector database

Install from Source

  1. Clone the repository:

git clone https://github.com/recursive-vibe/smart-fork.git
cd Smart-Fork
  1. Create and activate a virtual environment:

python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
  1. Install the package:

pip install -e .

Install from PyPI (coming soon)

pip install smart-fork

Verify Installation

Run the verification script to ensure everything is set up correctly:

python -c "import smart_fork; print(smart_fork.__version__)"

Configure Claude Code MCP

Add Smart Fork to your Claude Code MCP configuration file (~/.claude/mcp_servers.json):

{
  "mcpServers": {
    "smart-fork": {
      "command": "/path/to/smart-fork/venv/bin/python",
      "args": ["-m", "smart_fork.server"],
      "cwd": "/path/to/smart-fork/src",
      "env": {
        "PYTHONPATH": "/path/to/smart-fork/src"
      }
    }
  }
}

Replace /path/to/smart-fork with your actual installation path.

Restart Claude Code (or reload the VSCode window) to load the MCP server.

Quick Start

  1. Start Claude Code - The Smart Fork server will automatically start in the background and begin indexing your existing sessions.

  2. First Run Setup - On first launch, Smart Fork will scan ~/.claude/ for existing session files and build the initial database. This may take a few minutes depending on how many sessions you have.

    Manual Initial Indexing (recommended for first run):

    cd /path/to/smart-fork
    source venv/bin/activate
    
    # For small session counts (<100 sessions)
    python -m smart_fork.initial_setup
    
    # For large session counts (100+ sessions) - recommended
    python -m smart_fork.initial_setup --batch-mode

    Note:

    • Large session files (>1MB) may take longer to process. Sessions with no parseable messages will be skipped.

    • By default, sessions that take longer than 30 seconds to process will timeout and be skipped. See Timeout Handling for configuration options.

    • For 100+ sessions, use --batch-mode to avoid memory issues. See Batch Mode Setup for details.

  3. Use the Tool - In any Claude Code session, simply describe what you want to do in natural language. Claude Code will automatically invoke the fork-detect tool when appropriate.

    Example:

    You: I want to find my previous work on WebSocket real-time updates
    
    Claude: [Automatically invokes fork-detect tool behind the scenes]
  4. Select a Session - Claude will present the top 5 most relevant past sessions. Choose one to fork from, or start fresh.

  5. Fork and Continue - Copy the generated command and paste it in a new terminal to continue from that session with full context.

Usage

Using the fork-detect Tool

Smart Fork provides the fork-detect MCP tool that integrates seamlessly with Claude Code. When you describe a task or problem, Claude Code can automatically invoke this tool to search your session history and find the most relevant previous conversations.

How It Works:

  1. Natural Language Interface - Simply describe your task in the conversation with Claude

  2. Automatic Invocation - Claude Code invokes the fork-detect tool behind the scenes when appropriate

  3. Semantic Search - The tool searches your entire session history using AI-powered semantic matching

  4. Contextual Results - You receive a curated list of the most relevant past sessions

Example Queries:

You can ask Claude to help you with tasks like:

  • "I want to implement user authentication with JWT like I did before"

  • "Can you find my previous work on database connection pooling?"

  • "Show me sessions where I added dark mode to settings"

  • "Find conversations about refactoring API error handling"

  • "Help me find my React component optimization work"

Direct Invocation (Optional):

While Claude Code typically invokes the tool automatically, you can also explicitly ask:

You: Use the fork-detect tool to search for "WebSocket real-time updates"

Note: The fork-detect tool is an MCP tool, not a slash command. It's invoked through the Model Context Protocol, either automatically by Claude or when you explicitly request it.

Selecting a Session

After searching, Smart Fork displays exactly 5 options:

  1. Top 3 Results - The most relevant sessions based on composite scoring

  2. None - start fresh - Begin a new session without forking

  3. Type something else - Refine your search with a different query

Each result shows:

  • Session ID: Unique identifier for the session

  • Date: When the session was created

  • Project: Project name (extracted from file path)

  • Score: Relevance percentage (0-100%)

  • Preview: Snippet from the most relevant part of the conversation

  • ⭐ Recommended: The highest-scoring result

Example output:

Found 5 relevant sessions:

⭐ [1] Session abc123 (92% match) - Recommended
   Date: 2026-01-15
   Project: my-dashboard
   Preview: "Implemented real-time updates using WebSocket connection with
            automatic reconnection logic..."

[2] Session def456 (81% match)
   Date: 2026-01-10
   Project: my-dashboard
   Preview: "Added dashboard component with live data updates and polling
            fallback..."

[3] Session ghi789 (67% match)
   Date: 2025-12-20
   Project: admin-portal
   Preview: "Created WebSocket handler for server-sent events with proper
            error handling..."

[4] None - start fresh

[5] Type something else

Forking a Session

When you select a session, Smart Fork generates two types of fork commands:

1. New Terminal Fork (Recommended)

claude --resume abc123 --fork-session

Opens a new Claude Code session continuing from the selected conversation.

2. In-Session Fork (Advanced)

/fork abc123 /path/to/project

Forks within the current session (if supported by your Claude Code version).

Simply copy the command and paste it in a new terminal to continue with full context from that session.

Configuration

Smart Fork works out-of-the-box with sensible defaults, but you can customize its behavior.

Configuration Options

Smart Fork uses a configuration file at ~/.smart-fork/config.json. The file is created automatically with default values on first run.

Embedding Model Settings

"embedding": {
  "model_name": "sentence-transformers/all-MiniLM-L6-v2",
  "dimension": 384,
  "batch_size": 32,
  "max_batch_size": 128,
  "min_batch_size": 8
}
  • model_name: HuggingFace model identifier for embeddings

  • dimension: Embedding vector dimensions (must match model)

  • batch_size: Default batch size for embedding generation

  • max_batch_size: Maximum batch size (auto-adjusted based on RAM)

  • min_batch_size: Minimum batch size (prevents too-small batches)

Search Parameters

"search": {
  "k_chunks": 200,
  "top_n_sessions": 5,
  "preview_length": 200,
  "similarity_threshold": 0.3,
  "recency_weight": 0.25
}
  • k_chunks: Number of chunks to retrieve from vector database

  • top_n_sessions: Number of session results to display

  • preview_length: Character limit for preview snippets

  • similarity_threshold: Minimum similarity score (0.0-1.0)

  • recency_weight: Weight given to recent sessions in scoring

Chunking Settings

"chunking": {
  "target_tokens": 750,
  "overlap_tokens": 150,
  "max_tokens": 1000
}
  • target_tokens: Target size for each chunk

  • overlap_tokens: Overlap between adjacent chunks (maintains context)

  • max_tokens: Maximum chunk size (hard limit)

Background Indexing

"indexing": {
  "debounce_delay": 5.0,
  "checkpoint_interval": 15,
  "enabled": true
}
  • debounce_delay: Seconds to wait after file modification before indexing

  • checkpoint_interval: Index after this many new messages (prevents loss)

  • enabled: Enable/disable background indexing

Timeout Handling

"setup": {
  "timeout_per_session": 30.0
}
  • timeout_per_session: Maximum time in seconds to process each session file (default: 30.0)

Smart Fork will skip sessions that exceed this timeout and log a warning. Timed-out sessions can be retried later using the retry_timeouts flag.

Handling Large Session Files:

If you have very large session files (>5MB) that timeout during initial setup:

from smart_fork.initial_setup import InitialSetup

# Increase timeout for large files
setup = InitialSetup(timeout_per_session=60.0)
result = setup.run_setup()

# Or retry previously timed-out sessions
if result.get('timeouts'):
    print(f"{len(result['timeouts'])} sessions timed out")
    result = setup.run_setup(resume=True, retry_timeouts=True)

Multi-Threaded Indexing:

Speed up initial setup by processing sessions in parallel:

from smart_fork.initial_setup import InitialSetup

# Use 4 worker threads for parallel processing
setup = InitialSetup(workers=4)
result = setup.run_setup()

print(f"Processed {result['files_processed']} files using {result['workers_used']} workers")
print(f"Elapsed time: {result['elapsed_time']:.1f}s")

# Typical speedup with multiple workers:
# - 2 workers: 1.5-1.8x faster
# - 4 workers: 2-3x faster
# - 8 workers: 3-4x faster (diminishing returns due to I/O)

Batch Mode Setup (Recommended for 100+ Sessions):

For large session counts, batch mode spawns fresh Python processes between batches to fully release memory:

# Run initial setup in batch mode (recommended)
python -m smart_fork.initial_setup --batch-mode

# Custom batch size (default: 5 sessions per batch)
python -m smart_fork.initial_setup --batch-mode --batch-size 10

# Force CPU mode to reduce memory usage
python -m smart_fork.initial_setup --batch-mode --use-cpu

# All batch mode options
python -m smart_fork.initial_setup --batch-mode --batch-size 5 --use-cpu --timeout 60

Batch mode benefits:

  • Memory Management: Each batch runs in a separate process, ensuring complete memory release

  • Resumable: State is saved after each session, so you can interrupt and resume anytime

  • Progress Tracking: Shows current progress and remaining sessions

  • CPU Mode: --use-cpu disables GPU/MPS acceleration to reduce memory footprint

CLI options:

  • --batch-mode: Enable subprocess-based batch processing

  • --batch-size N: Sessions per batch (default: 5)

  • --use-cpu: Force CPU mode (disable MPS/CUDA)

  • --timeout N: Timeout per session in seconds (default: 30)

  • --storage-dir PATH: Custom storage directory (default: ~/.smart-fork)

  • --claude-dir PATH: Custom Claude sessions directory (default: ~/.claude)

Server Settings

"server": {
  "host": "127.0.0.1",
  "port": 8741
}
  • host: Bind address (always localhost for security)

  • port: Port for local REST API server

Memory Management

"memory": {
  "max_memory_mb": 2000,
  "gc_between_batches": true
}
  • max_memory_mb: Maximum memory usage target in megabytes

  • gc_between_batches: Run garbage collection between embedding batches

Storage Directory

"storage_dir": "~/.smart-fork"
  • storage_dir: Directory for database and registry files

Configuration File

Create or edit ~/.smart-fork/config.json:

{
  "embedding": {
    "model_name": "sentence-transformers/all-MiniLM-L6-v2",
    "dimension": 384,
    "batch_size": 32,
    "max_batch_size": 128,
    "min_batch_size": 8
  },
  "search": {
    "k_chunks": 200,
    "top_n_sessions": 5,
    "preview_length": 200,
    "similarity_threshold": 0.3,
    "recency_weight": 0.25
  },
  "chunking": {
    "target_tokens": 750,
    "overlap_tokens": 150,
    "max_tokens": 1000
  },
  "indexing": {
    "debounce_delay": 5.0,
    "checkpoint_interval": 15,
    "enabled": true
  },
  "server": {
    "host": "127.0.0.1",
    "port": 8741
  },
  "memory": {
    "max_memory_mb": 2000,
    "gc_between_batches": true
  },
  "storage_dir": "~/.smart-fork"
}

Changes take effect after restarting Claude Code.

How It Works

Background Indexing

Smart Fork continuously monitors ~/.claude/ for new or modified session files:

  1. File Monitoring: Uses the watchdog library to detect file system changes

  2. Debouncing: Waits 5 seconds after the last modification before indexing (configurable)

  3. Checkpoint Indexing: Indexes sessions every 10-20 messages to prevent data loss

  4. Graceful Processing: Handles rapid successive changes without duplication

Session files are parsed, chunked, embedded, and stored in the vector database automatically.

When Claude invokes the fork-detect tool, Smart Fork:

  1. Embeds Your Query: Converts your natural language description to a 384-dimensional vector

  2. Vector Search: Finds the 200 most similar chunks using ChromaDB's k-NN search

  3. Groups by Session: Aggregates chunks by their parent session

  4. Scores Sessions: Calculates composite scores for each session

  5. Ranks Results: Returns the top 5 sessions, sorted by relevance

Composite Scoring

Each session receives a composite score based on multiple factors:

Final Score = (best_similarity × 0.40)
            + (avg_similarity × 0.20)
            + (chunk_ratio × 0.05)
            + (recency × 0.25)
            + (chain_quality × 0.10)

Scoring Components:

  • Best Similarity (40%): Highest similarity score among matched chunks

  • Average Similarity (20%): Mean similarity across all matched chunks

  • Chunk Ratio (5%): Proportion of session chunks that matched

  • Recency (25%): Exponential decay based on session age (30-day half-life)

  • Chain Quality (10%): Placeholder for future conversation quality metrics (currently 0.5)

Memory Type Boosts:

Sessions containing Claude memory markers receive bonus scores:

  • PATTERN (e.g., "design pattern", "approach", "architecture"): +5%

  • WORKING_SOLUTION (e.g., "tested", "verified", "successful"): +8%

  • WAITING (e.g., "todo", "pending", "in progress"): +2%

These boosts help prioritize sessions with proven solutions and documented patterns.

Troubleshooting

Known Limitations

  • Large Sessions: Sessions over 1MB may take significantly longer to index. Consider using a timeout-based indexing script for initial setup.

  • Empty Sessions: Sessions with no parseable messages are skipped automatically.

  • Claude Code Format: Only Claude Code JSONL format is supported. The parser handles nested message structures with role and content fields.

Common Issues

"No sessions found" error

Cause: Database is empty or hasn't finished initial indexing.

Solutions:

  1. Wait for initial indexing to complete (check ~/.smart-fork/session-registry.json)

  2. Verify session files exist in ~/.claude/

  3. Check logs for indexing errors

Search returns irrelevant results

Cause: Query may be too vague or database needs more sessions.

Solutions:

  1. Use more specific queries with technical terms

  2. Try different phrasing

  3. Use the "Type something else" option to refine

  4. Adjust similarity_threshold in config (lower = more results)

High memory usage

Cause: Embedding model or large batches consuming RAM.

Solutions:

  1. Reduce max_batch_size in config (e.g., to 64 or 32)

  2. Lower max_memory_mb to trigger more aggressive batch sizing

  3. Close other applications to free memory

  4. Enable gc_between_batches if disabled

Slow search performance

Cause: Large database or insufficient resources.

Solutions:

  1. Reduce k_chunks in config (e.g., to 100)

  2. Increase similarity_threshold to filter more aggressively

  3. Check system resources (CPU, RAM, disk I/O)

  4. Consider using a faster machine for large databases

Background indexing not working

Cause: File monitoring may have failed or is disabled.

Solutions:

  1. Check that indexing.enabled is true in config

  2. Verify ~/.claude/ directory exists and is readable

  3. Restart Claude Code to reinitialize the MCP server

  4. Check logs for watchdog errors

Config changes not taking effect

Cause: Configuration is loaded once at startup.

Solutions:

  1. Restart Claude Code after changing config

  2. Verify config file has valid JSON syntax

  3. Check file permissions on ~/.smart-fork/config.json

Performance Tuning

For systems with limited RAM (< 8GB):

{
  "embedding": {
    "batch_size": 16,
    "max_batch_size": 32
  },
  "memory": {
    "max_memory_mb": 1000,
    "gc_between_batches": true
  }
}

For high-performance systems (16GB+ RAM):

{
  "embedding": {
    "batch_size": 64,
    "max_batch_size": 256
  },
  "search": {
    "k_chunks": 300
  },
  "memory": {
    "max_memory_mb": 4000
  }
}

For faster search at the cost of accuracy:

{
  "search": {
    "k_chunks": 100,
    "similarity_threshold": 0.5
  }
}

Privacy & Security

Data Storage

All data is stored locally on your machine:

  • Vector Database: ~/.smart-fork/vector_db/ (ChromaDB)

  • Session Registry: ~/.smart-fork/session-registry.json

  • Configuration: ~/.smart-fork/config.json

No data is ever sent to external servers (except for downloading the embedding model on first run).

Network Security

  • The REST API server binds exclusively to 127.0.0.1 (localhost)

  • No external network access is possible

  • Only processes on your local machine can access the API

Session Privacy

  • Session files in ~/.claude/ may contain sensitive information

  • The vector database stores embeddings (semantic representations) but not full text

  • Session metadata (project, timestamps, chunk counts) is stored in the registry

  • Preview snippets are generated on-demand from matched chunks

Best Practices

  1. Secure Your Machine: Use full-disk encryption and strong user passwords

  2. Backup Carefully: If backing up ~/.smart-fork/, treat it as sensitive data

  3. Review Before Forking: Check preview snippets to avoid leaking sensitive context

  4. Clean Old Sessions: Periodically delete session files you no longer need

  5. Environment Variables: Avoid storing secrets in sessions (use .env files instead)

Data Deletion

To completely remove Smart Fork data:

# Stop Claude Code first
rm -rf ~/.smart-fork/

This deletes the vector database, session registry, and configuration. Your original session files in ~/.claude/ remain untouched.

Example Usage Scenarios

Scenario 1: Implementing a Similar Feature

Context: You previously built a real-time dashboard with WebSockets. Now you need to add live notifications to a different project.

You: I need to implement real-time notifications with WebSocket.
     Can you help me find my previous work on this?

Claude: [Invokes fork-detect tool automatically]

Fork Detection Results:
⭐ [1] Session abc123 (94% match) - Recommended
   Date: 2026-01-10
   Project: my-dashboard
   Preview: "Set up WebSocket connection with automatic reconnection,
            heartbeat ping/pong, and exponential backoff..."

[2] Session def456 (81% match)
   ...

To fork from the recommended session, run:
Terminal command: claude --resume abc123 --fork-session

You: (paste command in new terminal)
Claude: (continues with full context from the dashboard implementation)

Result: You save 20+ minutes of re-explaining WebSocket setup, reconnection logic, error handling, etc.

Scenario 2: Debugging a Recurring Issue

Context: You fixed a memory leak in your app 3 weeks ago. A similar issue appeared in a different component.

You: I'm seeing a memory leak in React components again.
     Can you find my previous debugging session on this?

Claude: [Invokes fork-detect tool]

Fork Detection Results:
⭐ [1] Session def456 (89% match) - Recommended
   Date: 2025-12-28
   Project: web-app
   Preview: "Identified memory leak caused by missing cleanup in useEffect.
            Added return function to cancel subscriptions and clear intervals..."

To fork from this session, run:
claude --resume def456 --fork-session

You: (pastes command to continue)

Result: Claude remembers the exact debugging approach, tools used, and solution pattern from the previous fix.

Scenario 3: Continuing After Context Limit

Context: You're in a long refactoring session that hit the 200k token limit.

You: I need to continue refactoring the authentication module from my
     previous session. Can you find where I left off?

Claude: [Invokes fork-detect tool]

Fork Detection Results:
⭐ [1] Session ghi789 (98% match) - Recommended
   Date: Today, 2 hours ago
   Project: api-server
   Preview: "Refactoring auth module: completed user service, working on
            token validation. Next: implement refresh token rotation..."

To continue from where you left off, run:
claude --resume ghi789 --fork-session

You: (continues seamlessly)

Result: Seamlessly continue refactoring with all architectural decisions and progress context intact.

Scenario 4: Testing Multiple Approaches

Context: You want to try different UI frameworks for the same feature.

# First approach
You: Find my work on implementing settings page with form validation

Claude: [Shows results, you fork to session with React + Formik]

# Later, try another approach
You: Find that same settings page session again, I want to try
     a different approach

Claude: [Shows same results]

You: Let's fork from that session but use Vue 3 with Vuelidate instead

Result: Test multiple approaches from the same baseline without losing context or duplicating setup work.

Scenario 5: Onboarding to a New Project

Context: A new team member needs to understand your project's patterns.

You: Can you help me understand this project's structure and coding patterns?
     Find any sessions where the architecture was discussed.

Claude: [Invokes fork-detect tool]

Fork Detection Results:
⭐ [1] Session jkl012 (85% match) - Recommended
   Date: 2025-11-15
   Project: api-server
   Preview: "Explained project architecture: 3-tier design with controllers,
            services, and repositories. Error handling uses custom exception
            classes..."

To review this architectural discussion, run:
claude --resume jkl012 --fork-session

Result: New developers can fork from architecture discussions to get context-aware guidance.

Advanced Topics

Manual Session Indexing

To manually trigger indexing of a specific session:

from smart_fork.background_indexer import BackgroundIndexer
from smart_fork.embedding_service import EmbeddingService
from smart_fork.vector_db_service import VectorDBService
from smart_fork.session_registry import SessionRegistry

# Initialize services
embedding_service = EmbeddingService()
vector_db = VectorDBService()
registry = SessionRegistry()

# Create indexer
indexer = BackgroundIndexer(
    embedding_service=embedding_service,
    vector_db=vector_db,
    registry=registry
)

# Index a specific file
indexer.index_file("/path/to/session.jsonl")

Querying the Database Programmatically

from smart_fork.search_service import SearchService

# Initialize search service
search_service = SearchService(
    embedding_service=embedding_service,
    vector_db=vector_db,
    scoring_service=scoring_service,
    registry=registry
)

# Search for sessions
results = search_service.search(
    query="implement user authentication",
    k_chunks=200,
    top_n_sessions=5
)

for result in results:
    print(f"{result.session_id}: {result.score:.2%} - {result.preview[:100]}")

Custom Embedding Models

To use a different embedding model, update your config:

{
  "embedding": {
    "model_name": "sentence-transformers/all-MiniLM-L6-v2",
    "dimension": 384
  }
}

Note: Changing the model requires re-indexing all sessions (the dimension must match).

Database Statistics

Check database statistics:

from smart_fork.vector_db_service import VectorDBService

vector_db = VectorDBService()
stats = vector_db.get_stats()

print(f"Total chunks: {stats['total_chunks']}")
print(f"Total sessions: {stats['total_sessions']}")

Roadmap

Latest Release (v1.0)

All Phase 1-3 features are complete and production-ready:

Phase 1 (MVP): ✅ Complete

  • Semantic search, background indexing, MCP integration

Phase 2 (Enhancements): ✅ Complete

  • Progress display, timeout handling, session preview

Phase 3 (Advanced Features): ✅ Complete

  • Caching, fork history, project filters, temporal search, tagging

  • Clustering, summarization, diff tool, archiving, VS Code extension

Future Enhancements (v1.1+)

  • Chain Quality Tracking: Track success rates of forked sessions to improve recommendations

  • Advanced Search Filters: Boolean operators, regex patterns, metadata filters

  • Team Features: Shared session libraries with privacy controls

  • More IDE Plugins: JetBrains, Cursor, other Claude-compatible editors

  • Session Analytics: Usage patterns, productivity metrics, knowledge graphs

  • Cloud Sync: Optional encrypted sync across devices (privacy-first)

Want to contribute? See the Contributing section below!

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Areas for contribution:

  • Additional embedding models support

  • Performance optimizations

  • UI/UX improvements

  • Documentation enhancements

  • Bug fixes and testing

License

This project is licensed under the MIT License - see the LICENSE file for details.


Troubleshooting? Check the Troubleshooting section above or open an issue.

Questions? Join our discussions or reach out on GitHub.

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/recursive-vibe/smart-fork'

If you have feedback or need assistance with the MCP directory API, please join our Discord server