Kodit MCP Server

Code indexing for better AI code generation

Remote serverstreamable-httpGo

What is the Kodit MCP server?

Kodit MCP server exists for a simple reason — assistants are far more useful when they can act on Kodit directly instead of describing what you should do. Code indexing for better AI code generation.

What you get

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

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once Kodit is connected, these are the calls the assistant has available:

  • 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

Configuration and credentials

You will need 8 environment variables: ENRICHMENT_ENDPOINT_BASE_URL, EMBEDDING_ENDPOINT_API_KEY, EMBEDDING_ENDPOINT_BASE_URL, EMBEDDING_ENDPOINT_SOCKET_PATH, BASE_URL, VISION_EMBEDDING_ENDPOINT_BASE_URL, VISION_EMBEDDING_ENDPOINT_API_KEY, VISION_EMBEDDING_ENDPOINT_SOCKET_PATH. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Kodit.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the kodit mcp server does with a few real requests.

Choosing this one

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Kodit's toolset — kodit_repositories, kodit_semantic_search, kodit_keyword_search and 11 more — is a fair guide to whether it matches your workflow.

This entry was verified against Kodit's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
kodit_repositoriesList all indexed repositories
kodit_semantic_searchSemantic similarity search across code
kodit_keyword_searchBM25 keyword search
kodit_visual_searchSearch document page images
kodit_grepRegex pattern matching
kodit_lsList files by glob pattern
kodit_read_resourceRead file content by URI
kodit_architecture_docsArchitecture documentation for a repo
kodit_api_docsPublic API documentation
kodit_database_schemaDatabase schema documentation
kodit_cookbookUsage examples and patterns
kodit_commit_descriptionCommit description
kodit_wikiWiki table of contents
kodit_wiki_pageRead a specific wiki page

How to install the Kodit MCP server

{
  "mcpServers": {
    "kodit": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "registry.helix.ml/helix/kodit"],
      "env": {
        "ENRICHMENT_ENDPOINT_BASE_URL": "your-value",
        "EMBEDDING_ENDPOINT_API_KEY": "your-value",
        "EMBEDDING_ENDPOINT_BASE_URL": "your-value",
        "EMBEDDING_ENDPOINT_SOCKET_PATH": "your-value",
        "BASE_URL": "your-value",
        "VISION_EMBEDDING_ENDPOINT_BASE_URL": "your-value",
        "VISION_EMBEDDING_ENDPOINT_API_KEY": "your-value",
        "VISION_EMBEDDING_ENDPOINT_SOCKET_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ENRICHMENT_ENDPOINT_BASE_URLEndpoint or connection string the server talks to.Yes
EMBEDDING_ENDPOINT_API_KEYCredential the server authenticates with.Yes
EMBEDDING_ENDPOINT_BASE_URLEndpoint or connection string the server talks to.Yes
EMBEDDING_ENDPOINT_SOCKET_PATHFilesystem location the server is allowed to use.Optional
BASE_URLEndpoint or connection string the server talks to.Yes
VISION_EMBEDDING_ENDPOINT_BASE_URLEndpoint or connection string the server talks to.Yes
VISION_EMBEDDING_ENDPOINT_API_KEYCredential the server authenticates with.Yes
VISION_EMBEDDING_ENDPOINT_SOCKET_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Kodit to kodit repositories.
  • Use Kodit to kodit semantic search.
  • Use Kodit to kodit keyword search.

Frequently asked questions

It connects Kodit to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (kodit_repositories, kodit_semantic_search, kodit_keyword_search, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Kodit directly.