MCP Catalogs
Home

kodit

by helixml·119·Score 49

Kodit is a code and document intelligence server that indexes Git repositories and provides search through MCP and REST APIs.

developer-toolsai-llmsearch
15
Forks
21
Open issues
this month
Last commit
2d ago
Indexed

Overview

Kodit is a powerful tool that indexes Git repositories and documents, splitting source files into searchable snippets accessible through MCP or REST APIs. It supports multiple search strategies including BM25 keyword search, semantic vector search, regex grep, and visual document search. The server can be deployed with Docker, pre-built binaries, or as a Go library, making it flexible for different use cases.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Enhancing AI coding assistants by providing access to real examples from your codebase
you:Searching across both code and documentation in a unified interface
you:Generating architecture docs, API docs, and database schema documentation automatically
you:What search methods does Kodit support?
you:Can Kodit work with AI coding assistants?

When to choose this

Choose Kodit when you need a self-hosted solution for indexing your own repositories and want to give AI assistants direct access to your codebase patterns without sending code to external services.

When NOT to choose this

Avoid Kodit if you need write access to repositories (this is read-only) or if you're looking for a cloud-hosted solution with minimal infrastructure management.

Tools this server exposes

12 tools extracted from the README
  • kodit_repositories

    List all indexed repositories

  • kodit_semantic_search

    Semantic similarity search across code

  • kodit_keyword_search

    BM25 keyword search

  • kodit_visual_search

    Search document page images

  • kodit_grep

    Regex pattern matching

  • kodit_ls

    List files by glob pattern

  • kodit_read_resource

    Read file content by URI

  • kodit_architecture_docs

    Architecture documentation for a repo

  • kodit_api_docs

    Public API documentation

  • kodit_database_schema

    Database schema documentation

  • kodit_cookbook

    Usage examples and patterns

  • kodit_commit_description

    Commit description

Comparable tools

semantic-searchsourcegraphdevvswimmgit-repo-search

Installation

Installation

Docker (recommended)

docker run -p 8080:8080 registry.helix.ml/helix/kodit:latest

Pre-built binaries

Download a binary from the [releases page](https://github.com/helixml/kodit/releases), then:

chmod +x kodit
./kodit serve

Claude Desktop integration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "kodit": {
      "command": "kodit",
      "args": ["serve"],
      "env": {
        "DATA_DIR": ".kodit"
      }
    }
  }
}

FAQ

What search methods does Kodit support?
Kodit supports BM25 keyword search, semantic vector search, regex grep, and visual document search, each exposed as separate MCP tools.
Can Kodit work with AI coding assistants?
Yes, Kodit works with Claude Code, Cursor, Cline, Kilo Code, and any other MCP-compatible assistant through its MCP endpoint.

On Hacker News

Recent discussion from the developer community.

Compare kodit with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.