
Claude Context
@zilliztech
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.
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"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"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
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.
「AI とエージェント」の他のコンテンツ
Intervals.icu MCP Server
mvilanovaModel Context Protocol (MCP) server for connecting Claude and ChatGPT with the Intervals.icu API.
MCP-NixOS - Because Your AI Assistant Shouldn't Hallucinate About Packages
utensilsMCP-NixOS - Model Context Protocol Server for NixOS resources
1MCP - One MCP Server for All
1mcp-appA unified Model Context Protocol server implementation that aggregates multiple MCP servers into one.
LinkedIn MCP Server
stickerdanielOpen-source MCP server for LinkedIn. Give Claude and any MCP-compatible AI agent access to profiles, companies, jobs, and messages.
MCP Claude Code
SDGLBLMCP implementation of Claude Code capabilities and more
コメント