home / mcp / kodit mcp server

Kodit MCP Server

πŸ‘©β€πŸ’» MCP server to index external repositories

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "helixml-kodit": {
      "url": "https://kodit.helix.ml/mcp"
    }
  }
}

Kodit is an MCP server that connects your AI coding assistant to external codebases, enabling you to fetch up-to-date, canonical code snippets directly from source repositories. By indexing codebases and exposing relevant snippets through MCP, you can reduce errors and hallucinations in AI-powered coding tasks while gaining fast, contextual access to code examples across languages and projects.

How to use

You connect your AI coding assistant to Kodit’s hosted MCP server to search for code snippets by keyword, language, author, date, and file path, with both keyword and semantic search support. Use it to retrieve relevant examples from popular open source projects or private repositories indexed by Kodit. The hosted server is designed to be drop-in ready, so you can start querying right away by pointing your MCP client at the provided endpoint.

Code to configure your MCP client

You can configure your MCP client to use the hosted Kodit MCP endpoint. The following example shows how an MCP client can reference the Kodit server to request code snippets relevant to a task.

{
  "mcpServers": {
    "kodit": {
      "type": "http",
      "name": "kodit",
      "url": "https://kodit.helix.ml/mcp",
      "args": []
    }
  }
}