CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
trondhindenes avatar

Code Index

trondhindenes/code-index-mcp
6STDIOregistry active
Summary

Wraps Zoekt's trigram search engine to let Claude index and query your local codebases. You get five tools: index_directory to build searchable indexes per repo, search_code with regex and file filters, list_indexes to see what's available, delete_index for cleanup, and index_info for storage details. The search output is deliberately terse, returning grep style filename:line:content tuples with configurable limits on files and matches per file. Query syntax supports language filters, case sensitivity, and boolean operators. Good for when you need Claude to search across multiple large repos without embedding full directory trees in context. Automatically skips node_modules, build artifacts, and binaries during indexing.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Code Index MCP Server

An MCP (Model Context Protocol) server for fast local source code searching using Zoekt.

Features

  • Fast code search: Uses Zoekt's trigram-based indexing for fast substring and regex matching
  • Per-directory indexes: Each indexed directory gets its own index stored in the user profile
  • Rich query language: Supports regex, file filters, language filters, and boolean operators
  • Cross-platform: Works on macOS and Linux

Installation

This server is available on the MCP Registry.

Download Pre-built MCPB bundle (experimental)

Download the appropriate .mcpb bundle for your platform from the GitHub Releases page:

  • code-index-mcp-darwin-arm64.mcpb - macOS Apple Silicon
  • code-index-mcp-darwin-amd64.mcpb - macOS Intel
  • code-index-mcp-linux-amd64.mcpb - Linux x64
  • code-index-mcp-linux-arm64.mcpb - Linux ARM64

The .mcpb file is a ZIP archive containing the binary and manifest. You can open it directly in Claude Desktop in order to install it

Manual installation (recommended)

In order to get the binary onto your computer, you can do one of the following:

Download from releases

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
Using Go
go install github.com/trondhindenes/code-index-mcp@latest
Build from Source
git clone https://github.com/trondhindenes/code-index-mcp
cd code-index-mcp
go build -o code-index-mcp .

Configuration

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.

Claude Desktop

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"
    }
  }
}

Claude Code

Run the following:

claude mcp add --scope user --transport stdio code-index /path/to/code-index-mcp

Environment Variables

  • CODE_INDEX_DIR: Override the default index storage location

Default index locations:

  • macOS: ~/Library/Application Support/code-index/
  • Linux: ~/.local/share/code-index/ or $XDG_DATA_HOME/code-index/

Available Tools

index_directory

Index a source code directory for fast searching.

Parameters:

  • directory (required): The path to the directory to index

Example:

Index the directory /Users/me/projects/myapp

search_code

Search for code across indexed directories. Returns compact grep-like output to minimize context window usage.

Parameters:

  • query (required): The search query using Zoekt syntax
  • directory (optional): Limit search to a specific indexed directory
  • max_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 search
  • file:\.go$ func main - Search only in .go files
  • lang:python class.*Model - Search in Python files
  • -test func main - Exclude files containing "test"
  • case:yes MyFunc - Case-sensitive search

list_indexes

List all indexed directories and their locations.

delete_index

Delete the index for a specific directory.

Parameters:

  • directory (required): The path to the directory whose index should be deleted

index_info

Get information about the indexing configuration, including storage location.

Skipped Directories

The following directories are automatically skipped during indexing:

  • Hidden directories (starting with .)
  • node_modules, vendor, __pycache__
  • target, build, dist
  • venv, .venv, env, .env

Skipped Files

Binary files and common non-code files are automatically skipped, including:

  • Executables (.exe, .dll, .so, .dylib)
  • Archives (.zip, .tar, .gz)
  • Images (.png, .jpg, .gif)
  • Documents (.pdf, .doc, .docx)

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Search & Web Crawling
Registryactive
Packagehttps://github.com/trondhindenes/code-index-mcp/releases/download/1.0.16/code-index-mcp-darwin-amd64.mcpb
TransportSTDIO
UpdatedNov 30, 2025
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
adelpro avatar
Quran Search Engine Mcp

adelpro/quran-search-engine-mcp

Quran Search Engine MCP for AI tools. Provides Quran search, Arabic normalization, and highlighting.
5
tonysimonovsky avatar
Claude Code Conversation Search Mcp

tonysimonovsky/claude-code-conversation-search-mcp

Search Claude Code conversation history with natural language queries across all projects
5
kazkozdev avatar
MCP Search Server

io.github.kazkozdev/search

Web search, content extraction, PDF parsing, plus datetime and geolocation tools. No API keys.
4
mastadoonprime avatar
Sylex Search

mastadoonprime/sylex-search

Universal search engine for AI agents. Discover products, services, and businesses via MCP.
3
lulzasaur9192 avatar
Marketplace Search

io.github.lulzasaur9192/marketplace-search

22 tools: search 15+ marketplaces, verify licenses, childcare costs, FCC, GSA auctions
2
mharnett avatar
Bing Ads

io.github.mharnett/bing-ads

MCP server for Microsoft Advertising (Bing Ads) — campaigns, keywords, and reports
2