code-context
Model Context Protocol integration for Code Context
Installation
npx @tan-yong-sheng/code-context-mcpAsk AI about code-context
Powered by Claude Β· Grounded in docs
I know everything about code-context. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation

Your entire codebase as Claude's context
Note: This project is a fork of Code Context: https://github.com/zilliztech/code-context to replace the milvus vector database to sqlite
Code Context is an MCP plugin that adds semantic code search to Claude Code and other AI coding agents, giving them deep context from your entire codebase.
π§ Your Entire Codebase as Context: Code Context uses semantic search to find all relevant code from millions of lines. No multi-round discovery needed. It brings results straight into the Claude's context.
π° Cost-Effective for Large Codebases: Instead of loading entire directories into Claude for every request, which can be very expensive, Code Context efficiently stores your codebase in a vector database and only uses related code in context to keep your costs manageable.
Quick Start
Prerequisites
Get OpenAI API Key for embedding model
You need an OpenAI API key for the embedding model. You can get one by signing up at OpenAI.
Your API key will look like this: it always starts with sk-.
Copy your key and use it in the configuration examples below as your-openai-api-key.
Configure MCP for Claude Code
System Requirements:
- Node.js >= 20.0.0 and < 24.0.0
Code Context is not compatible with Node.js 24.0.0, you need downgrade it first if your node version is greater or equal to 24.
Configuration
Use the command line interface to add the Code Context MCP server:
claude mcp add code-context \
-e OPENAI_API_KEY=sk-your-openai-api-key \
-- npx @tan-yong-sheng/code-context-mcp@latest
See the Claude Code MCP documentation for more details about MCP server management.
Other MCP Client Configurations
OpenAI Codex CLI
Codex CLI uses TOML configuration files:
-
Create or edit the
~/.codex/config.tomlfile. -
Add the following configuration:
# IMPORTANT: the top-level key is `mcp_servers` rather than `mcpServers`.
[mcp_servers.code-context]
command = "npx"
args = ["@tan-yong-sheng/code-context-mcp@latest"]
env = { "OPENAI_API_KEY" = "your-openai-api-key" }
# Optional: override the default 10s startup timeout
startup_timeout_ms = 20000
- Save the file and restart Codex CLI to apply the changes.
Gemini CLI
Gemini CLI requires manual configuration through a JSON file:
- Create or edit the
~/.gemini/settings.jsonfile. - Add the following configuration:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
- Save the file and restart Gemini CLI to apply the changes.
Qwen Code
Create or edit the ~/.qwen/settings.json file and add the following configuration:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
Cursor
Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server
Pasting the following configuration into your Cursor ~/.cursor/mcp.json file is the recommended approach. You may also install in a specific project by creating .cursor/mcp.json in your project folder. See Cursor MCP docs for more info.
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["-y", "@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
Void
Go to: Settings -> MCP -> Add MCP Server
Add the following configuration to your Void MCP settings:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["-y", "@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
Windsurf
Windsurf supports MCP configuration through a JSON file. Add the following configuration to your Windsurf MCP settings:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["-y", "@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
VS Code
The Code Context MCP server can be used with VS Code through MCP-compatible extensions. Add the following configuration to your VS Code MCP settings:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["-y", "@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
Cherry Studio
Cherry Studio allows for visual MCP server configuration through its settings interface. While it doesn't directly support manual JSON configuration, you can add a new server via the GUI:
- Navigate to Settings β MCP Servers β Add Server.
- Fill in the server details:
- Name:
code-context - Type:
STDIO - Command:
npx - Arguments:
["@tan-yong-sheng/code-context-mcp@latest"] - Environment Variables:
OPENAI_API_KEY:your-openai-api-key
- Name:
- Save the configuration to activate the server.
Cline
Cline uses a JSON configuration file to manage MCP servers. To integrate the provided MCP server configuration:
-
Open Cline and click on the MCP Servers icon in the top navigation bar.
-
Select the Installed tab, then click Advanced MCP Settings.
-
In the
cline_mcp_settings.jsonfile, add the following configuration:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
- Save the file.
Augment
To configure Code Context MCP in Augment Code, you can use either the graphical interface or manual configuration.
A. Using the Augment Code UI
-
Click the hamburger menu.
-
Select Settings.
-
Navigate to the Tools section.
-
Click the + Add MCP button.
-
Enter the following command:
npx @tan-yong-sheng/code-context-mcp@latest -
Name the MCP: Code Context.
-
Click the Add button.
B. Manual Configuration
- Press Cmd/Ctrl Shift P or go to the hamburger menu in the Augment panel
- Select Edit Settings
- Under Advanced, click Edit in settings.json
- Add the server configuration to the
mcpServersarray in theaugment.advancedobject
"augment.advanced": {
"mcpServers": [
{
"name": "code-context",
"command": "npx",
"args": ["-y", "@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
]
}
Roo Code
Roo Code utilizes a JSON configuration file for MCP servers:
-
Open Roo Code and navigate to Settings β MCP Servers β Edit Global Config.
-
In the
mcp_settings.jsonfile, add the following configuration:
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
}
}
- Save the file to activate the server.
Zencoder
Zencoder offers support for MCP tools and servers in both its JetBrains and VS Code plugin versions.
- Go to the Zencoder menu (...)
- From the dropdown menu, select
Tools - Click on the
Add Custom MCP - Add the name (i.e.
Code Contextand server configuration from below, and make sure to hit theInstallbutton
{
"command": "npx",
"args": ["@tan-yong-sheng/code-context-mcp@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key"
}
}
- Save the server by hitting the
Installbutton.
LangChain/LangGraph
For LangChain/LangGraph integration examples, see this example.
Other MCP Clients
The server uses stdio transport and follows the standard MCP protocol. It can be integrated with any MCP-compatible client by running:
npx @tan-yong-sheng/code-context-mcp@latest
Usage in Your Codebase
-
Open Claude Code
cd your-project-directory claude -
Index your codebase:
Index this codebase -
Check indexing status:
Check the indexing status -
Start searching:
Find functions that handle user authentication
π That's it! You now have semantic code search in Claude Code.
Environment Variables Configuration
For more detailed MCP environment variable configuration, see our Environment Variables Guide.
Using Different Embedding Models
To configure custom embedding models (e.g., text-embedding-3-large for OpenAI, voyage-code-3 for VoyageAI), see the MCP Configuration Examples for detailed setup instructions for each provider.
File Inclusion & Exclusion Rules
For detailed explanation of file inclusion and exclusion rules, and how to customize them, see our File Inclusion & Exclusion Rules.
Available Tools
1. index_codebase
Index a codebase directory for hybrid search (BM25 + dense vector).
2. search_code
Search the indexed codebase using natural language queries with hybrid search (BM25 + dense vector).
3. clear_index
Clear the search index for a specific codebase.
4. get_indexing_status
Get the current indexing status of a codebase. Shows progress percentage for actively indexing codebases and completion status for indexed codebases.
ποΈ Architecture

π§ Implementation Details
- π Hybrid Code Search: Ask questions like "find functions that handle user authentication" and get relevant, context-rich code instantly using advanced hybrid search (BM25 + dense vector).
- π§ Context-Aware: Discover large codebase, understand how different parts of your codebase relate, even across millions of lines of code.
- β‘ Incremental Indexing: Efficiently re-index only changed files using Merkle trees.
- π§© Intelligent Code Chunking: Analyze code in Abstract Syntax Trees (AST) for chunking.
- ποΈ Local-First: Uses sqlite-vec for local vector storage - no external database needed, works offline.
- π οΈ Customizable: Configure file extensions, ignore patterns, and embedding models.
Core Components
Code Context is a monorepo containing two main packages:
@tan-yong-sheng/code-context-core: Core indexing engine with embedding and vector database integration@tan-yong-sheng/code-context-mcp: Model Context Protocol server for AI agent integration
And it also has a VSCode extension here: https://marketplace.visualstudio.com/items?itemName=tan-yong-sheng.ai-code-context
Supported Technologies
- Embedding Providers: OpenAI, VoyageAI, Ollama, Gemini
- Vector Database: sqlite-vec (local SQLite-based vector database - zero config!)
- Code Splitters: AST-based splitter (with automatic fallback), LangChain character-based splitter
- Languages: TypeScript, JavaScript, Python, Java, C++, C#, Go, Rust, PHP, Ruby, Swift, Kotlin, Scala, Markdown
- Development Tools: VSCode, Model Context Protocol
π¦ Other Ways to Use Code Context
While MCP is the recommended way to use Code Context with AI assistants, you can also use it directly via the Core Package.
Build Applications with Core Package
The @tan-yong-sheng/code-context-core package provides the fundamental functionality for code indexing and semantic search.
import { Context, SqliteVecVectorDatabase, OpenAIEmbedding } from '@tan-yong-sheng/code-context-core';
// Initialize embedding provider
const embedding = new OpenAIEmbedding({
apiKey: process.env.OPENAI_API_KEY || 'your-openai-api-key',
model: 'text-embedding-3-small'
});
// Initialize vector database (sqlite-vec - zero config!)
const vectorDatabase = new SqliteVecVectorDatabase();
// Create context instance
const context = new Context({
embedding,
vectorDatabase
});
// Index your codebase with progress tracking
const stats = await context.indexCodebase('./your-project', (progress) => {
console.log(`${progress.phase} - ${progress.percentage}%`);
});
console.log(`Indexed ${stats.indexedFiles} files, ${stats.totalChunks} chunks`);
// Perform semantic search
const results = await context.semanticSearch('./your-project', 'vector database operations', 5);
results.forEach(result => {
console.log(`File: ${result.relativePath}:${result.startLine}-${result.endLine}`);
console.log(`Score: ${(result.score * 100).toFixed(2)}%`);
console.log(`Content: ${result.content.substring(0, 100)}...`);
});
π οΈ Development
Setup Development Environment
Prerequisites
- Node.js 20.x or 22.x
- pnpm (recommended package manager)
Cross-Platform Setup
# Clone repository
git clone https://github.com/tan-yong-sheng/code-context.git
cd code-context
# Install dependencies
pnpm install
# Build all packages
pnpm build
# Start development mode
pnpm dev
Windows-Specific Setup
On Windows, ensure you have:
- Git for Windows with proper line ending configuration
- Node.js installed via the official installer or package manager
- pnpm installed globally:
npm install -g pnpm
# Windows PowerShell/Command Prompt
git clone https://github.com/tan-yong-sheng/code-context.git
cd code-context
# Configure git line endings (recommended)
git config core.autocrlf false
# Install dependencies
pnpm install
# Build all packages (uses cross-platform scripts)
pnpm build
# Start development mode
pnpm dev
Building
# Build all packages (cross-platform)
pnpm build
# Build specific package
pnpm build:core
pnpm build:mcp
# Performance benchmarking
pnpm benchmark
Windows Build Notes
- All build scripts are cross-platform compatible using rimraf
- Build caching is enabled for faster subsequent builds
- Use PowerShell or Command Prompt - both work equally well
Running Examples
# Development with file watching
cd examples/basic-usage
pnpm dev
π Examples
Check the /examples directory for complete usage examples:
- Basic Usage: Simple indexing and search example
β FAQ
Common Questions:
- What files does Code Context decide to embed?
- Can I use a fully local deployment setup?
- Does it support multiple projects / codebases?
- How does Code Context compare to other coding tools?
β For detailed answers and more troubleshooting tips, see our FAQ Guide.
π§ Encountering issues? Visit our Troubleshooting Guide for step-by-step solutions.
π Need more help? Check out our complete documentation for detailed guides and troubleshooting tips.
π€ Contributing
We welcome contributions! Please see our Contributing Guide for details on how to get started.
Package-specific contributing guides:
πΊοΈ Roadmap
- AST-based code analysis for improved understanding
- Support for additional embedding providers
- Agent-based interactive search mode
- Enhanced code chunking strategies
- Search result ranking optimization
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π Links
- GitHub Repository
- sqlite-vec - SQLite extension for vector search
