codebaxing
MCP server for semantic code search that indexes your codebase and allows AI editors to search using natural language queries.
README
Codebaxing
MCP server for semantic code search. Index your codebase once, then search using natural language.
How It Works
Your Code → Tree-sitter Parser → Symbols → Embedding Model → Vectors → ChromaDB
↓
"find auth logic" → Embedding → Query Vector → Similarity Search → Results
Traditional search matches exact text. Codebaxing understands meaning:
| Query | Finds (even without exact match) |
|---|---|
| "authentication" | login(), validateCredentials(), authMiddleware() |
| "database connection" | connectDB(), prismaClient, repository.query() |
Quick Start
1. Start ChromaDB
docker run -d -p 8000:8000 --name chromadb chromadb/chroma
2. Index Your Codebase (CLI)
npx codebaxing@latest index /path/to/your/project
This creates a .codebaxing/ folder with the index. Only needs to be done once per project.
Performance note: Local embedding is slow (~4 min for ~4,000 files). For faster indexing, use Gemini embedding (free) — see Cloud Embedding below.
3. Install MCP Server for AI Editors
npx codebaxing install # Claude Desktop
npx codebaxing install --cursor # Cursor
npx codebaxing install --windsurf # Windsurf
npx codebaxing install --all # All editors
Restart your editor. Now you can ask: "Find the authentication logic"
CLI Commands
| Command | Description |
|---|---|
npx codebaxing@latest index <path> |
Index a codebase (required first) |
npx codebaxing search <query> |
Search indexed code |
npx codebaxing stats [path] |
Show index statistics |
npx codebaxing clean [path] |
Remove index (reset) |
npx codebaxing install [--editor] |
Install MCP server |
npx codebaxing uninstall [--editor] |
Uninstall MCP server |
Tip: Use
@latestforindexto ensure you have the newest version.
Search Options
npx codebaxing search "auth middleware" --path ./src --limit 10
--path, -p- Codebase path (default: current directory)--limit, -n- Number of results (default: 5)
MCP Tools (for AI Agents)
After installing, AI agents can use these tools:
| Tool | Description |
|---|---|
search |
Semantic code search |
stats |
Index statistics |
languages |
Supported file extensions |
remember |
Store project memory |
recall |
Retrieve memories |
forget |
Delete memories |
Note: The
indextool is disabled for AI agents. Use CLI:npx codebaxing@latest index <path>
Configuration
Cloud Embedding (Fastest)
Local embedding runs on CPU and can be slow for large codebases (~4 min for ~4,000 files). Cloud embedding is ~25x faster and recommended for any project with 1,000+ files.
# Gemini (FREE - recommended, 1500 RPM free tier)
CODEBAXING_EMBEDDING_PROVIDER=gemini GEMINI_API_KEY=... npx codebaxing@latest index /path
# OpenAI (text-embedding-3-small, 384 dims)
CODEBAXING_EMBEDDING_PROVIDER=openai OPENAI_API_KEY=sk-... npx codebaxing@latest index /path
# Voyage (voyage-code-3, 1024 dims, code-optimized)
CODEBAXING_EMBEDDING_PROVIDER=voyage VOYAGE_API_KEY=va-... npx codebaxing@latest index /path
| Provider | Model | Speed | Cost |
|---|---|---|---|
| Gemini | text-embedding-004 (768 dims) |
~10,000 texts/sec | Free (1500 RPM) |
| OpenAI | text-embedding-3-small (384 dims) |
~10,000 texts/sec | ~$0.02 / 1M tokens |
| Voyage | voyage-code-3 (1024 dims) |
~10,000 texts/sec | ~$0.06 / 1M tokens |
| Local | all-MiniLM-L6-v2 (384 dims) |
~200 texts/sec | Free (CPU) |
Note: Switching between providers requires full re-index (
npx codebaxing@latest index <path>) due to dimension differences.
Environment Variables
| Variable | Description | Default |
|---|---|---|
CHROMADB_URL |
ChromaDB server URL | http://localhost:8000 |
CODEBAXING_EMBEDDING_PROVIDER |
Embedding backend: local, gemini, openai, voyage |
local |
CODEBAXING_DEVICE |
Compute device (local only): cpu, cuda |
cpu |
CODEBAXING_DTYPE |
Model quantization (local only): fp32, fp16, q8, q4 |
q8 |
CODEBAXING_WORKERS |
Worker threads for parallel embedding (local only, 0=off) | 2 |
CODEBAXING_MAX_FILE_SIZE |
Max file size in MB | 1 |
CODEBAXING_MAX_CHUNKS |
Max chunks to index | 500000 |
CODEBAXING_FILES_PER_BATCH |
Files per batch (lower = less RAM) | 100 |
CODEBAXING_PARALLEL_BATCHES |
Concurrent batches | 3 |
CODEBAXING_METADATA_SAVE_INTERVAL |
Save progress every N batches | 10 |
CODEBAXING_MODEL_CACHE |
Model cache directory (local only) | ~/.cache/codebaxing/models |
CODEBAXING_OPENAI_API_KEY |
OpenAI API key (or use OPENAI_API_KEY) |
- |
CODEBAXING_VOYAGE_API_KEY |
Voyage API key (or use VOYAGE_API_KEY) |
- |
CODEBAXING_GEMINI_API_KEY |
Gemini API key (or use GEMINI_API_KEY) |
- |
CODEBAXING_EMBEDDING_MODEL |
Override embedding model name | per-provider default |
CODEBAXING_EMBEDDING_DIMENSIONS |
Override embedding dimensions | per-provider default |
CODEBAXING_EMBEDDING_BASE_URL |
Custom API endpoint for cloud providers | provider default |
Manual Editor Config
<details> <summary>Claude Desktop</summary>
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"codebaxing": {
"command": "npx",
"args": ["-y", "codebaxing"],
"env": { "CHROMADB_URL": "http://localhost:8000" }
}
}
}
</details>
<details> <summary>Cursor</summary>
~/.cursor/mcp.json
{
"mcpServers": {
"codebaxing": {
"command": "npx",
"args": ["-y", "codebaxing"],
"env": { "CHROMADB_URL": "http://localhost:8000" }
}
}
}
</details>
<details> <summary>Other Editors</summary>
Windsurf: ~/.codeium/windsurf/mcp_config.json
Zed: ~/.config/zed/settings.json (use context_servers key)
VS Code + Continue: ~/.continue/config.json
</details>
Supported Languages
Python, JavaScript, TypeScript, Go, Rust, Java, C/C++, C#, Ruby, PHP, Kotlin, Swift, Scala, Lua, Dart, Elixir, Haskell, OCaml, Zig, Perl, Bash, HTML, CSS, Vue, JSON, YAML, TOML, Makefile
Requirements
- Node.js >= 20.0.0
- Docker (for ChromaDB)
- ~500MB disk space (embedding model)
Technical Details
| Component | Technology |
|---|---|
| Local Embedding | all-MiniLM-L6-v2 (384 dims, ONNX, q8 quantized) |
| Cloud Embedding | Gemini text-embedding-004 (free), OpenAI, or Voyage |
| Model Cache | ~/.cache/codebaxing/models/ (local only, downloaded once) |
| Vector Database | ChromaDB |
| Code Parser | Tree-sitter (28 languages) |
| MCP SDK | @modelcontextprotocol/sdk |
Local mode: The embedding model is downloaded from HuggingFace on first run and cached at ~/.cache/codebaxing/models/. Uses q8 quantization (~3x faster than fp32). No network access after initial download.
Cloud mode: Sends code chunks to OpenAI/Voyage API for embedding. ~25x faster than local CPU. Requires API key.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。