Fast local source code searching using Zoekt trigram-based indexing
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"code-index": {
"command": "/path/to/code-index-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server for fast local source code searching using Zoekt.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / search
Web and local search using Brave Search API
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Production ready MCP server with real-time search, extract, map & crawl.
MCP Security Weekly
Get CVE alerts and security updates for io.github.trondhindenes/code-index-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server for fast local source code searching using Zoekt.
This server is available on the MCP Registry.
Download the appropriate .mcpb bundle for your platform from the GitHub Releases page:
code-index-mcp-darwin-arm64.mcpb - macOS Apple Siliconcode-index-mcp-darwin-amd64.mcpb - macOS Intelcode-index-mcp-linux-amd64.mcpb - Linux x64code-index-mcp-linux-arm64.mcpb - Linux ARM64The .mcpb file is a ZIP archive containing the binary and manifest. You can open it directly in Claude Desktop in order to install it
In order to get the binary onto your computer, you can do one of the following:
Go to GitHub Releases and download the appropriate file (not mcpb but the tar/gzipped ones corresponding to your platform). For example:
curl -sL https://github.com/trondhindenes/code-index-mcp/releases/download/1.0.13/code-index-mcp-darwin-arm64.tar.gz | tar xz
chmod +x code-index-mcp
go install github.com/trondhindenes/code-index-mcp@latest
git clone https://github.com/trondhindenes/code-index-mcp
cd code-index-mcp
go build -o code-index-mcp .
Now that you have the binary installed locally, you can register it in your tools of choice. This should not be necessary if you installed via mcpb bundle but your mileage may vary.
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"code-index": {
"command": "/path/to/code-index-mcp"
}
}
}
Run the following:
claude mcp add --scope user --transport stdio code-index /path/to/code-index-mcp
CODE_INDEX_DIR: Override the default index storage locationDefault index locations:
~/Library/Application Support/code-index/~/.local/share/code-index/ or $XDG_DATA_HOME/code-index/index_directoryIndex a source code directory for fast searching.
Parameters:
directory (required): The path to the directory to indexExample:
Index the directory /Users/me/projects/myapp
search_codeSearch for code across indexed directories. Returns compact grep-like output to minimize context window usage.
Parameters:
query (required): The search query using Zoekt syntaxdirectory (optional): Limit search to a specific indexed directorymax_files (optional): Maximum files to return (default: 20)max_lines_per_file (optional): Maximum matches per file (default: 3)files_only (optional): Only return file paths, no line content (default: false)Output Format:
/path/to/file.go:42: matching line content here
/path/to/file.go:58: another matching line
... and 5 more matches in this file
Query Syntax Examples:
func main - Simple text searchfile:\.go$ func main - Search only in .go fileslang:python class.*Model - Search in Python files-test func main - Exclude files containing "test"case:yes MyFunc - Case-sensitive searchlist_indexesList all indexed directories and their locations.