# code-context-hologres
**Repository Path**: aliyun/code-context-hologres
## Basic Information
- **Project Name**: code-context-hologres
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2026-04-30
- **Last Updated**: 2026-05-01
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

### Your entire codebase as Claude's context
[](https://opensource.org/licenses/MIT)
[](https://nodejs.org/)
[](docs/)
[](https://www.npmjs.com/package/code-context-core-hologres)
[](https://www.npmjs.com/package/code-context-mcp-hologres)
[]()
[]()
**Code Context Hologres** 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 Hologres uses semantic search to find all relevant code from millions of lines. No multi-round discovery needed. It brings results straight into the AI assistant's context.
π° **Cost-Effective for Large Codebases**: Instead of loading entire directories into AI assistants for every request, which can be very expensive, Code Context Hologres efficiently stores your codebase in a vector database and only uses related code in context to keep your costs manageable.
---
## π Demo
Model Context Protocol (MCP) allows you to integrate Code Context Hologres with your favorite AI coding assistants, e.g. Claude Code.
## Quick Start
### Prerequisites
Set up Hologres Vector Database π
Code Context Hologres needs a vector database. You need a Hologres instance to store and search vectors.
Configure the following environment variables for your Hologres instance:
- `HOLOGRES_HOST`: Your Hologres instance endpoint (e.g., `your-instance.hologres.aliyuncs.com`)
- `HOLOGRES_PORT`: Connection port (default: `80`)
- `HOLOGRES_DATABASE`: Database name
- `HOLOGRES_USER`: Your access ID
- `HOLOGRES_PASSWORD`: Your access secret
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](https://platform.openai.com/api-keys).
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 Hologres 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 Code
Use OpenAI Embedding Model
```bash
claude mcp add code-context-hologres \
-e OPENAI_API_KEY=sk-your-openai-api-key \
-e HOLOGRES_HOST=your-hologres-instance.hologres.aliyuncs.com \
-e HOLOGRES_PORT=80 \
-e HOLOGRES_DATABASE=your-database-name \
-e HOLOGRES_USER=your-access-id \
-e HOLOGRES_PASSWORD=your-access-secret \
-- npx code-context-mcp-hologres@latest
```
Use DashScope Embedding Model
```bash
claude mcp add code-context-hologres \
-e EMBEDDING_PROVIDER=DashScope \
-e DASHSCOPE_API_KEY=sk-your-dashscope-api-key \
-e EMBEDDING_MODEL=text-embedding-v4 \
-e EMBEDDING_BATCH_SIZE=10 \
-e HOLOGRES_HOST=your-hologres-instance.hologres.aliyuncs.com \
-e HOLOGRES_PORT=80 \
-e HOLOGRES_DATABASE=your-database-name \
-e HOLOGRES_USER=your-access-id \
-e HOLOGRES_PASSWORD=your-access-secret \
-- npx code-context-mcp-hologres@latest
```
##### Qwen Code
Use OpenAI Embedding Model
```bash
qwen mcp add \
-t stdio \
-e OPENAI_API_KEY=sk-your-openai-api-key \
-e HOLOGRES_HOST=your-hologres-instance.hologres.aliyuncs.com \
-e HOLOGRES_PORT=80 \
-e HOLOGRES_DATABASE=your-database-name \
-e HOLOGRES_USER=your-access-id \
-e HOLOGRES_PASSWORD=your-access-secret \
code-context-hologres \
npx \
-y \
code-context-mcp-hologres@latest
```
Use DashScope Embedding Model
```bash
qwen mcp add \
-t stdio \
-e EMBEDDING_PROVIDER=DashScope \
-e DASHSCOPE_API_KEY=sk-your-dashscope-api-key \
-e EMBEDDING_MODEL=text-embedding-v4 \
-e EMBEDDING_BATCH_SIZE=10 \
-e HOLOGRES_HOST=your-hologres-instance.hologres.aliyuncs.com \
-e HOLOGRES_PORT=80 \
-e HOLOGRES_DATABASE=your-database-name \
-e HOLOGRES_USER=your-access-id \
-e HOLOGRES_PASSWORD=your-access-secret \
code-context-hologres \
npx \
-y \
code-context-mcp-hologres@latest
```
See the [Code Code MCP documentation](https://docs.anthropic.com/en/docs/claude-code/mcp) for more details about MCP server management.
### Other MCP Client Configurations
OpenAI Codex CLI
Codex CLI uses TOML configuration files:
1. Create or edit the `~/.codex/config.toml` file.
2. Add the following configuration:
```toml
# IMPORTANT: the top-level key is `mcp_servers` rather than `mcpServers`.
[mcp_servers.code-context-hologres]
command = "npx"
args = ["code-context-mcp-hologres@latest"]
env = { "OPENAI_API_KEY" = "your-openai-api-key", "HOLOGRES_HOST" = "your-hologres-host", "HOLOGRES_PORT" = "80", "HOLOGRES_DATABASE" = "your-database", "HOLOGRES_USER" = "your-user", "HOLOGRES_PASSWORD" = "your-password" }
# Optional: override the default 10s startup timeout
startup_timeout_ms = 20000
```
3. Save the file and restart Codex CLI to apply the changes.
Gemini CLI
Gemini CLI requires manual configuration through a JSON file:
1. Create or edit the `~/.gemini/settings.json` file.
2. Add the following configuration:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
3. 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:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
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](https://docs.cursor.com/context/model-context-protocol) for more info.
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["-y", "code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
Void
Go to: `Settings` -> `MCP` -> `Add MCP Server`
Add the following configuration to your Void MCP settings:
```json
{
"mcpServers": {
"code-context": {
"command": "npx",
"args": ["-y", "code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
Claude Desktop
Add to your Claude Desktop configuration:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
Windsurf
Windsurf supports MCP configuration through a JSON file. Add the following configuration to your Windsurf MCP settings:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["-y", "code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
VS Code
The Code Context Hologres MCP server can be used with VS Code through MCP-compatible extensions. Add the following configuration to your VS Code MCP settings:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["-y", "code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
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:
1. Navigate to **Settings β MCP Servers β Add Server**.
2. Fill in the server details:
- **Name**: `code-context-hologres`
- **Type**: `STDIO`
- **Command**: `npx`
- **Arguments**: `["code-context-mcp-hologres@latest"]`
- **Environment Variables**:
- `OPENAI_API_KEY`: `your-openai-api-key`
- `HOLOGRES_HOST`: `your-hologres-instance.hologres.aliyuncs.com`
- `HOLOGRES_PORT`: `80`
- `HOLOGRES_DATABASE`: `your-database-name`
- `HOLOGRES_USER`: `your-access-id`
- `HOLOGRES_PASSWORD`: `your-access-secret`
3. 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:
1. Open Cline and click on the **MCP Servers** icon in the top navigation bar.
2. Select the **Installed** tab, then click **Advanced MCP Settings**.
3. In the `cline_mcp_settings.json` file, add the following configuration:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
4. Save the file.
Augment
To configure Code Context Hologres MCP in Augment Code, you can use either the graphical interface or manual configuration.
#### **A. Using the Augment Code UI**
1. Click the hamburger menu.
2. Select **Settings**.
3. Navigate to the **Tools** section.
4. Click the **+ Add MCP** button.
5. Enter the following command:
```
npx code-context-mcp-hologres@latest
```
6. Name the MCP: **Code Context Hologres**.
7. Click the **Add** button.
------
#### **B. Manual Configuration**
1. Press Cmd/Ctrl Shift P or go to the hamburger menu in the Augment panel
2. Select Edit Settings
3. Under Advanced, click Edit in settings.json
4. Add the server configuration to the `mcpServers` array in the `augment.advanced` object
```json
"augment.advanced": {
"mcpServers": [
{
"name": "code-context-hologres",
"command": "npx",
"args": ["-y", "code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
]
}
```
Roo Code
Roo Code utilizes a JSON configuration file for MCP servers:
1. Open Roo Code and navigate to **Settings β MCP Servers β Edit Global Config**.
2. In the `mcp_settings.json` file, add the following configuration:
```json
{
"mcpServers": {
"code-context-hologres": {
"command": "npx",
"args": ["code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
}
}
```
3. 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.
1. Go to the Zencoder menu (...)
2. From the dropdown menu, select `Tools`
3. Click on the `Add Custom MCP`
4. Add the name (i.e. `Code Context Hologres`) and server configuration from below, and make sure to hit the `Install` button
```json
{
"command": "npx",
"args": ["code-context-mcp-hologres@latest"],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"HOLOGRES_HOST": "your-hologres-instance.hologres.aliyuncs.com",
"HOLOGRES_PORT": "80",
"HOLOGRES_DATABASE": "your-database-name",
"HOLOGRES_USER": "your-access-id",
"HOLOGRES_PASSWORD": "your-access-secret"
}
}
```
5. Save the server by hitting the `Install` button.
LangChain/LangGraph
For LangChain/LangGraph integration examples, see [this example](https://github.com/aliyun/code-context-hologres/blob/main/evaluation/retrieval/custom.py).
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:
```bash
npx code-context-mcp-hologres@latest
```
---
### Usage in Your Codebase
1. **Open Claude Code**
```
cd your-project-directory
claude
```
2. **Index your codebase**:
```
Index this codebase
```
3. **Check indexing status**:
```
Check the indexing status
```
4. **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](docs/getting-started/environment-variables.md).
### Using DashScope (ιΏιδΊηΎηΌ) Embedding Models
Code Context Hologres now supports Alibaba Cloud's DashScope embedding models. To use DashScope:
**Required Environment Variables:**
```bash
EMBEDDING_PROVIDER=DashScope
DASHSCOPE_API_KEY=sk-your-dashscope-api-key
EMBEDDING_MODEL=text-embedding-v4
```
**Optional Environment Variables:**
```bash
DASHSCOPE_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
EMBEDDING_BATCH_SIZE=10
```
**Available DashScope Models:**
- `text-embedding-v4` - Latest and recommended model (1024 dimensions, batch size: 10)
- `text-embedding-v3` - Supports multiple dimensions (1024/768/512)
- `text-embedding-v2` - Legacy model (1536 dimensions)
- `text-embedding-v1` - Legacy model (1536 dimensions)
For more details on DashScope models and API usage, see the [DashScope Documentation](https://help.aliyun.com/zh/model-studio/).
### 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](packages/mcp/README.md#embedding-provider-configuration) 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](docs/dive-deep/file-inclusion-rules.md).
### 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.
---
## π Evaluation
Our controlled evaluation demonstrates that Code Context Hologres MCP achieves ~40% token reduction under the condition of equivalent retrieval quality. This translates to significant cost and time savings in production environments. This also means that, under the constraint of limited token context length, using Code Context Hologres yields better retrieval and answer results.

For detailed evaluation methodology and results, see the [evaluation directory](evaluation/).
---
## ποΈ 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.
- ποΈ **Scalable**: Integrates with Hologres for scalable vector search, no matter how large your codebase is.
- π οΈ **Customizable**: Configure file extensions, ignore patterns, and embedding models.
### Core Components
Code Context Hologres is a monorepo containing three main packages:
- **`code-context-core-hologres`**: Core indexing engine with embedding and vector database integration
- **VSCode Extension**: β οΈ *Coming Soon* - Semantic Code Search extension for Visual Studio Code
- **Chrome Extension**: β οΈ *Coming Soon* - Browser extension for code context
- **`code-context-mcp-hologres`**: Model Context Protocol server for AI agent integration
### Supported Technologies
- **Embedding Providers**: [OpenAI](https://openai.com), [VoyageAI](https://voyageai.com), [Ollama](https://ollama.ai), [Gemini](https://gemini.google.com), [DashScope (ιΏιδΊηΎηΌ)](https://help.aliyun.com/zh/model-studio/)
- **Vector Databases**: [Hologres](https://www.alibabacloud.com/product/hologres) (PostgreSQL-compatible real-time data warehouse with vector support)
- **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 Hologres with AI assistants, you can also use it directly or through the VSCode extension.
### Build Applications with Core Package
The `code-context-core-hologres` package provides the fundamental functionality for code indexing and semantic search.
```typescript
import { Context, HologresVectorDatabase, OpenAIEmbedding } from 'code-context-core-hologres';
// 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
const vectorDatabase = new HologresVectorDatabase({
host: process.env.HOLOGRES_HOST || 'your-hologres-instance.hologres.aliyuncs.com',
port: parseInt(process.env.HOLOGRES_PORT || '80'),
database: process.env.HOLOGRES_DATABASE || 'your-database-name',
user: process.env.HOLOGRES_USER || 'your-access-id',
password: process.env.HOLOGRES_PASSWORD || 'your-access-secret'
});
// 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)}...`);
});
```
### VSCode Extension
Integrates Code Context Hologres directly into your IDE. Provides an intuitive interface for semantic code search and navigation.
1. **Manual Search**:
- Open Extensions view in VSCode (Ctrl+Shift+X or Cmd+Shift+X on Mac)
- Search for "Semantic Code Search"
- Click Install
---
## π οΈ Development
### Setup Development Environment
#### Prerequisites
- Node.js 20.x or 22.x
- pnpm (recommended package manager)
#### Cross-Platform Setup
```bash
# Clone repository
git clone https://github.com/aliyun/code-context-hologres.git
cd code-context-hologres
# 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`
```powershell
# Windows PowerShell/Command Prompt
git clone https://github.com/aliyun/code-context-hologres.git
cd code-context-hologres
# 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
```bash
# Build all packages (cross-platform)
pnpm build
# Build specific package
pnpm build:core
pnpm build:vscode
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
```bash
# 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 Hologres decide to embed?](docs/troubleshooting/faq.md#q-what-files-does-code-context-hologres-decide-to-embed)**
- **[Can I use a fully local deployment setup?](docs/troubleshooting/faq.md#q-can-i-use-a-fully-local-deployment-setup)**
- **[Does it support multiple projects / codebases?](docs/troubleshooting/faq.md#q-does-it-support-multiple-projects--codebases)**
- **[How does Code Context Hologres compare to other coding tools?](docs/troubleshooting/faq.md#q-how-does-code-context-hologres-compare-to-other-coding-tools-like-serena-context7-or-deepwiki)**
β For detailed answers and more troubleshooting tips, see our [FAQ Guide](docs/troubleshooting/faq.md).
π§ **Encountering issues?** Visit our [Troubleshooting Guide](docs/troubleshooting/troubleshooting-guide.md) for step-by-step solutions.
π **Need more help?** Check out our [complete documentation](docs/) for detailed guides and troubleshooting tips.
---
## π€ Contributing
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details on how to get started.
**Package-specific contributing guides:**
- [Core Package Contributing](packages/core/CONTRIBUTING.md)
- [MCP Server Contributing](packages/mcp/CONTRIBUTING.md)
- [VSCode Extension Contributing](packages/vscode-extension/CONTRIBUTING.md)
---
## πΊοΈ Roadmap
- [x] AST-based code analysis for improved understanding
- [x] Support for additional embedding providers
- [ ] Agent-based interactive search mode
- [x] Enhanced code chunking strategies
- [ ] Search result ranking optimization
- [ ] π§ VSCode Extension (In Development)
- [ ] π§ Chrome Extension (In Development)
---
## π License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
## π Links
- [GitHub Repository](https://github.com/aliyun/code-context-hologres)
- [Hologres Documentation](https://www.alibabacloud.com/help/en/hologres/)
# Acknowledgments
This project is based on [claude-context](https://github.com/zilliztech/claude-context). We acknowledge and appreciate the excellent work of the Claude Context team. Our main contribution focuses on parser-level adaptations to better support Hologres.