
Claude Context
@zilliztech
About Claude Context
Claude 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.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"claude-context": {
"command": "npx",
"args": [
"@zilliz/claude-context-mcp@latest"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"MILVUS_TOKEN": "your-zilliz-cloud-api-key"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Claude Context?
Claude Context is an MCP server that provides semantic code search and context retrieval for large codebases. It indexes your entire codebase using a vector database (Zilliz Cloud) and allows developers to query code with natural language instead of keyword matching.
How to use Claude Context?
Configure the server with your codebase path, Zilliz Cloud credentials, and optional file extension/ignore patterns. Then use MCP to send semantic search queries (e.g., "find functions that handle user authentication") and receive relevant code chunks in response.
Key features of Claude Context
- Semantic code search using natural language queries
- Incremental indexing via Merkle trees (only re-indexes changed files)
- AST-based intelligent code chunking for precise context
- Scalable vector storage with Zilliz Cloud integration
- Customizable file extensions, ignore patterns, and embedding models
- Context-aware discovery of relationships across millions of lines of code
Use cases of Claude Context
- Quickly find relevant functions or classes in a large legacy codebase
- Understand how different parts of a monorepo relate to each other
- Provide rich, context-aware code to an LLM without loading entire directories
FAQ from Claude Context
How does Claude Context differ from plain grep or keyword search?
It uses semantic search (vector embeddings) to retrieve code based on meaning, not exact keyword matches, catching relevant code that keyword search would miss.
Does it work with very large codebases?
Yes. It integrates with Zilliz Cloud for scalable vector search, and incremental indexing ensures only changed files are re-processed.
What happens when I modify a file in my codebase?
Claude Context uses Merkle trees to detect changes and performs incremental re-indexing, so only the modified portions are updated without a full rebuild.
What configuration options are available?
You can configure which file extensions to include, set ignore patterns for directories or files, and choose the embedding model used for vectorization.
More AI & Agents MCP servers
Open Multi-Agent Canvas
CopilotKitThe open-source multi-agent chat interface that lets you manage multiple agents in one dynamic conversation and add MCP servers for deep research
欢迎来到 智言平台
Shy2593666979AgentChat 是一个基于 LLM 的智能体交流平台,内置默认 Agent 并支持用户自定义 Agent。通过多轮对话和任务协作,Agent 可以理解并协助完成复杂任务。项目集成 LangChain、Function Call、MCP 协议、RAG、Memory、HITL、Skill、Milvus 和 ElasticSearch 等技术,实现高效的知识检索与工具调用,使用 FastAPI 构建高性能后端服务。
Intervals.icu MCP Server
mvilanovaModel Context Protocol (MCP) server for connecting Claude and ChatGPT with the Intervals.icu API.
Gemini MCP Server
aliargunMCP server implementation for Google's Gemini API
Shell and Coding agent for Claude and other mcp clients
rusiaamanShell and coding agent on mcp clients
Comments