Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI โ†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt โ†— (opens in a new tab)
  • Catalog JSON โ†— (opens in a new tab)
  • Remote MCP โ†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) โ†— (opens in a new tab)
  • GitHub โ†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
ยฉ 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. ๐Ÿง  Knowledge & Memory
  3. Deeprepo
D
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:21:46 AM

Deeprepo

Enrichment pendingWe havenโ€™t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time โ€” check back soon.
View Repository

Productivity-boosting RAG engine for codebases with multi-provider AI support and semantic search.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON โ–พ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "deeprepo": {
      "command": "npx",
      "args": [
        "-y",
        "deeprepo"
      ]
    }
  }
}

๐Ÿ’ก Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives๐Ÿง  More in Knowledge & Memory

Documentation Overview

DeepRepo โ€” Local RAG Engine for Codebases

A production-grade Python library for performing RAG (Retrieval Augmented Generation) on local codebases. No heavy frameworks, no external vector DBs, no cloud required.

What It Does

DeepRepo ingests a codebase and builds three things simultaneously:

LayerWhat it storesUsed for
Code Knowledge GraphClasses, functions, imports, call edges (SQLite)Symbol lookup, blast-radius analysis
Embeddings + FTS indexSemantic vectors + full-text searchRelevant code retrieval
Hierarchical WikiPlain-English .md files per moduleAI explanations, chat context

A smart query router classifies every question and picks the cheapest context strategy, reducing LLM token usage by 5โ€“50x compared to naive RAG.


Features

  • Zero dependencies on heavy frameworks โ€” pure Python, SQLite-backed
  • Multiple AI providers โ€” Ollama (free/local), OpenAI, Anthropic, Gemini, HuggingFace
  • CLI-first โ€” deeprepo ingest . / deeprepo serve / deeprepo query "โ€ฆ"
  • Wiki viewer โ€” browsable, searchable HTML wiki with in-page chat (deeprepo serve)
  • 7 focused MCP tools โ€” drop DeepRepo into Cursor / Claude Desktop as an MCP server
  • Branch isolation โ€” per-branch SQLite databases with copy-on-write from base branches
  • 3-tier retrieval โ€” Embeddings โ†’ FTS โ†’ Graph fallback for resilient search
  • Incremental ingestion โ€” unchanged files are skipped; only deltas re-processed

Quick Start

1. Install

bash
cd deeprepo_core
pip install -e .

For MCP server support:

Terminal
pip install -e ".[mcp]"

2. Install Ollama (free, local โ€” recommended)

bash
# macOS
brew install ollama
ollama serve                          # keep this running

ollama pull nomic-embed-text          # embedding model
ollama pull llama3.1:8b               # LLM

3. Ingest your codebase

bash
cd /path/to/your/project
deeprepo ingest .

4. Browse the wiki

bash
deeprepo serve                        # opens http://localhost:8080

5. Ask questions

bash
deeprepo query "how does authentication work?"
deeprepo query "what breaks if I change auth.py?"

CLI Reference

Code
deeprepo <command> [options]
CommandWhat it does
deeprepo initDetect provider setup, print the ingest command
deeprepo ingest [PATH]Scan repo โ†’ build graph + wiki + embeddings
deeprepo wiki [PATH]Regenerate wiki pages only (skip re-indexing)
deeprepo serveLaunch wiki viewer + in-page chat at port 8080
deeprepo query "QUESTION"Ask a question, get an AI answer
deeprepo statusShow branch isolation & cache freshness

Common flags (all commands)

bash
--llm ollama|openai|anthropic|gemini|huggingface   # LLM provider
--embed ollama|openai|huggingface                  # embedding provider (default: same as --llm)
--branch-isolation                                 # enable per-branch databases
--base-branch main                                 # seed feature-branch cache from main
--wiki-dir .deeprepo/wiki                          # override wiki output directory

ingest flags

bash
--chunk-size N      # chars per text chunk (default: 1000)
--overlap N         # overlap between chunks (default: 100)
--workers N         # wiki parallel workers (default: 3)
--no-wiki           # skip wiki generation

serve flags

bash
--port N            # HTTP port (default: 8080)

Examples

bash
# Ollama (free, fully local)
deeprepo ingest .

# OpenAI embeddings + Anthropic LLM
deeprepo ingest . --embed openai --llm anthropic

# Branch isolation for a feature branch
deeprepo ingest . --branch-isolation --base-branch main

# Serve wiki with chat on a custom port
deeprepo serve --llm openai --port 9000

# Query with specific top-k results
deeprepo query "where is AuthService defined?" --top-k 3

Python API

server.ts
from deeprepo import DeepRepoClient

# Single provider (backward-compatible shorthand)
client = DeepRepoClient(provider_name="ollama")

# Split providers โ€” Anthropic LLM + OpenAI embeddings
client = DeepRepoClient(
    embedding_provider_name="openai",
    llm_provider_name="anthropic",
)

# Branch isolation (team workflow)
client = DeepRepoClient(
    provider_name="ollama",
    branch_isolation=True,
    base_branches=["main"],
)

# Ingest (incremental โ€” unchanged files are skipped)
result = client.ingest("/path/to/your/code")
print(f"Files: {result['files_scanned']}, Wiki pages: {result['wiki_generated']}")

# Query โ€” smart routing selects the cheapest context strategy
response = client.query("How does authentication work?")
print(response['answer'])
print(f"Intent: {response['intent']}, Strategy: {response['strategy']}")
print(f"Sources: {response['sources']}")        # list of file paths

# Browse the generated wiki
print(f"Wiki at: {client.get_wiki_dir()}")

query() return shape

JSON Config
{
    "answer":         str,           # LLM-generated answer
    "sources":        list[str],     # file paths used as context
    "intent":         str,           # navigate | impact | explain | debug | review | general
    "strategy":       str,           # e.g. symbol_lookup, blast_radius, wiki_plus_skeleton, โ€ฆ
    "retrieval":      str,           # embeddings | fts | graph
    "token_estimate": int,           # estimated tokens consumed
    "history":        list[dict],    # conversation history (last N exchanges)
}

Supported AI Providers

ProviderCostSetupBest For
OllamaFREE, unlimitedInstall app + ollama pullLocal dev, privacy, offline
OpenAIPaidOPENAI_API_KEYProduction, best quality
AnthropicPaidANTHROPIC_API_KEYProduction, excellent reasoning
GeminiFree tierGEMINI_API_KEYExperimentation
HuggingFaceFree tierHUGGINGFACE_API_KEYCloud embeddings, no GPU needed

Note: Anthropic has no embeddings API. Pair it with another provider:

python
client = DeepRepoClient(embedding_provider_name="openai", llm_provider_name="anthropic")

Architecture

Code
deeprepo_core/src/deeprepo/
โ”œโ”€โ”€ client.py         # Main facade โ€” branch isolation, freshness, provider wiring
โ”œโ”€โ”€ graph.py          # SQLite store: graph nodes/edges, embeddings, wiki index, state
โ”œโ”€โ”€ graph_builder.py  # Tree-sitter AST parser โ†’ code knowledge graph
โ”œโ”€โ”€ wiki.py           # Hierarchical wiki engine โ€” bottom-up LLM synthesis
โ”œโ”€โ”€ router.py         # Intent classifier + 6 context strategy selectors
โ”œโ”€โ”€ ingestion.py      # File scanner, chunker, language detection
โ”œโ”€โ”€ interfaces.py     # Abstract base classes (EmbeddingProvider, LLMProvider)
โ”œโ”€โ”€ registry.py       # @register_embedding / @register_llm decorator system
โ”œโ”€โ”€ ui.py             # Wiki viewer (HTTP server + mermaid renderer + chat)
โ”œโ”€โ”€ mcp/
โ”‚   โ””โ”€โ”€ server.py     # 7 MCP tools for AI assistants (Cursor, Claude Desktop)
โ””โ”€โ”€ providers/
    โ”œโ”€โ”€ ollama_v.py
    โ”œโ”€โ”€ openai_v.py
    โ”œโ”€โ”€ anthropic_v.py
    โ”œโ”€โ”€ gemini_v.py
    โ””โ”€โ”€ huggingface_v.py

.deeprepo/            # Generated (gitignore this)
โ”œโ”€โ”€ default.db        # SQLite: graph + embeddings + wiki index + state
โ”œโ”€โ”€ <branch>.db       # Per-branch database when branch_isolation=True
โ””โ”€โ”€ wiki/             # Browsable .md wiki files
    โ”œโ”€โ”€ overview.md   # Whole-repo narrative overview
    โ””โ”€โ”€ *.md          # One page per module

Storage

Everything lives in a single SQLite file per branch โ€” no Redis, no Postgres, no Chroma.

TableContents
nodesFiles, classes, functions with metadata
edgesImport / call relationships between nodes
embeddingsFloat vectors for semantic search
wiki_pagesGenerated wiki markdown (key โ†’ content)
wiki_ftsFull-text search index over wiki
statePer-file SHA-256 hashes for incremental updates

Design Patterns

  • Facade โ€” DeepRepoClient is the single entry point; internals are hidden
  • Strategy โ€” LLMProvider / EmbeddingProvider abstract interfaces; providers are swappable
  • Registry โ€” @register_llm("ollama") decorator auto-registers providers at import time
  • Bottom-up synthesis โ€” wiki pages generated leaves-first; parent pages consume child summaries
  • 3-tier fallback โ€” Embeddings โ†’ FTS โ†’ Graph; queries work even when embeddings are cold
  • Copy-on-write branching โ€” feature branches start from base-branch cache, then delta-update

MCP Server (AI Assistant Integration)

Connect DeepRepo as an MCP server so Cursor, Claude Desktop, or any MCP-compatible AI assistant can call it directly โ€” without ever reading raw files.

Setup

Terminal
pip install deeprepo[mcp]

Cursor โ€” create ~/.cursor/mcp.json:

config.json
{
  "mcpServers": {
    "deeprepo": {
      "command": "python",
      "args": ["-m", "deeprepo.mcp.server"],
      "env": {
        "LLM_PROVIDER": "ollama"
      }
    }
  }
}

Claude Desktop โ€” add to ~/Library/Application Support/Claude/claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "deeprepo": {
      "command": "deeprepo-mcp",
      "env": {
        "EMBEDDING_PROVIDER": "openai",
        "LLM_PROVIDER": "anthropic",
        "OPENAI_API_KEY": "sk-...",
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

Available MCP Tools (7 tools)

ToolWhen to useToken cost
ingest_codebaseOne-time setup โ€” index a repo directoryโ€”
find_symbol"Where is X defined / what line is X on"~50 tokens
get_file_structure"Show me the API / functions in X"~150 tokens
explain_file"How does X work / explain X / what does X do"~300 tokens
find_change_impact"What breaks if I change X"~300 tokens
ask_codebaseAny open-ended question about the code~600โ€“2000 tokens
get_project_overview"Give me an overview / what does this project do"~600 tokens

Token Reduction vs Naive RAG

Query typeNaive RAGDeepRepoReduction
"where is X defined"~4 000 tokens~80 tokens50x
"what breaks if I change X"~4 000 tokens~300 tokens13x
"how does X work"~4 000 tokens~600 tokens7x
"fix the bug in X"~4 000 tokens~900 tokens4x

CLAUDE.md tip

Add this to your project's CLAUDE.md so Claude automatically uses DeepRepo:

markdown
## Code navigation
Before reading any source file directly, use these MCP tools:
- `find_symbol(name)` to locate a class or function
- `get_file_structure(filepath)` to see a file's API without reading it
- `explain_file(filepath)` to understand what a file does
- `find_change_impact(filepath)` before editing any file
- `ask_codebase(question)` for open-ended questions
- `get_project_overview()` at the start of a new session

Only call Read/Grep on a file after the above tools have been tried.

Configuration

Environment Variables

VariableDefaultDescription
LLM_PROVIDERopenaiLLM provider name
EMBEDDING_PROVIDERsame as LLM_PROVIDEREmbedding provider name
OPENAI_API_KEYโ€”Required for OpenAI
ANTHROPIC_API_KEYโ€”Required for Anthropic
GEMINI_API_KEYโ€”Required for Gemini
HUGGINGFACE_API_KEY / HF_TOKENโ€”Required for HuggingFace
OLLAMA_MODELllama3.1:8bOllama LLM model name
OLLAMA_EMBED_MODELnomic-embed-textOllama embedding model
OLLAMA_BASE_URLhttp://localhost:11434Ollama server URL
OLLAMA_TIMEOUT300LLM response timeout (seconds)

Testing

bash
# Full end-to-end test suite (runs ingest + all checks)
python3 test_deeprepo_flow.py

# Skip ingest, use cached index (faster iteration)
python3 test_deeprepo_flow.py --skip-ingest

# pytest unit tests
pytest tests/unit/ -v

# pytest with coverage
pytest tests/unit/ --cov=deeprepo --cov-report=html

The test_deeprepo_flow.py script tests all 7 sections end-to-end:

  1. Client initialisation & branch flags
  2. Ingest (graph + embeddings + wiki)
  3. WikiEngine โ€” page generation, caching, repo overview
  4. Graph API โ€” skeleton, blast-radius, symbol lookup
  5. RAG / Router โ€” intent classification, query execution
  6. CLI commands โ€” all subcommands + help
  7. Branch isolation flag combinations

Adding a New Provider

  1. Create src/deeprepo/providers/myprovider.py
  2. Implement EmbeddingProvider and/or LLMProvider interfaces
  3. Decorate with @register_embedding("myprovider") / @register_llm("myprovider")
  4. Auto-discovered at import time โ€” no other changes needed
server.ts
from deeprepo.interfaces import EmbeddingProvider, LLMProvider
from deeprepo.registry import register_embedding, register_llm

@register_embedding("myprovider")
class MyEmbeddingProvider(EmbeddingProvider):
    def embed(self, text: str) -> list[float]:
        ...  # return a list of floats

@register_llm("myprovider")
class MyLLMProvider(LLMProvider):
    def generate(self, prompt: str, context: str | None = None) -> str:
        ...  # return generated text

Documentation

  • DEVELOPER_WORKFLOW_GUIDE.md โ€” daily dev workflows and automation recipes
  • deeprepo_core/README.md โ€” package README (PyPI)
  • docs/high-level-design.excalidraw โ€” process flow diagram
  • docs/class-interaction-design.excalidraw โ€” class diagram

License

MIT License โ€” see LICENSE file for details.


Built for developers who want full control over their RAG pipelines.

Related MCP Servers

View all in Knowledge & Memory View all alternatives
  • Moxie Docs MCP logoMoxie Docs MCP
    โ˜… Featured

    MCP & Agent Skills for Automated Documentation, and codebase conventions + context

    ๐Ÿง  Knowledge & Memory17 views
    Compare vs Moxie Docs MCP โ†’
  • Mcp Server logoMcp Server

    Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MCP clients

    ๐Ÿง  Knowledge & Memory0 views
    Compare vs Mcp Server โ†’
  • D
    Dailyhotmcp

    ่šๅˆ55+ๅนณๅฐ็ƒญ้—จๆฆœๅ•ๆ•ฐๆฎ็š„AIๅทฅๅ…ท๏ผŒๆ”ฏๆŒๅพฎๅšใ€็ŸฅไนŽใ€B็ซ™ใ€GitHub็ญ‰ๅนณๅฐใ€‚้€‚็”จไบŽLLM/RAGๅœบๆ™ฏใ€‚

    ๐Ÿง  Knowledge & Memory0 views
    Compare vs Dailyhotmcp โ†’
  • C
    Collective Memory

    MCP server for persistent, semantic memory across AI sessions

    ๐Ÿง  Knowledge & Memory0 views
    Compare vs Collective Memory โ†’

Frequently Asked Questions about Deeprepo

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "deeprepo": { "command": "npx", "args": ["-y", "deeprepo"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDeeprepo AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/deeprepo?style=directory)](https://allmcps.com/mcp/deeprepo)
HTML Embed
<a href="https://allmcps.com/mcp/deeprepo"><img src="https://allmcps.com/api/badge/deeprepo?style=directory" alt="Deeprepo on AllMCPs" /></a>

Technical Specs & Signals

Category๐Ÿง Knowledge & Memory
More technical detailsExpand โ–พ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging ยท 27/100How this signal is calculated โ–พ
Server availabilityNot measured

Not scored for repo-hosted servers โ€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data โ€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

โ˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server โ†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge โ€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in ๐Ÿง  Knowledge & Memory โ†’Best MCP servers for Memory & Knowledge โ†’Alternatives to Deeprepo โ†’Install in Claude DesktopInstall in CursorInstall in VS Code