カーソルのローカルコードインデックス
ChromaDB を使用してコードベースをローカルにインデックスし、Cursor などのツール用の MCP (Model Context Protocol) サーバーを介してセマンティック検索ツールを提供する、実験的な Python ベースのサーバーです。
設定
クローンを作成してリポジトリに入ります:
git clone <repository-url> cd cursor-local-indexing.env.exampleをコピーして.envファイルを作成します。cp .env.example .env.envファイルを設定します。PROJECTS_ROOT=~/your/projects/root # Path to your projects directory FOLDERS_TO_INDEX=project1,project2 # Comma-separated list of folders to index例:
PROJECTS_ROOT=~/projects FOLDERS_TO_INDEX=project1,project2インデックス サーバーを起動します。
docker-compose up -dローカル検索サーバーを使用するように Cursor を設定します。
~/.cursor/mcp.jsonを作成または編集します。{ "mcpServers": { "workspace-code-search": { "url": "http://localhost:8978/sse" } } }変更を適用するには、Cursor IDE を再起動します。
サーバーは指定されたプロジェクトのインデックス作成を開始し、それらのプロジェクトがアクティブな場合は、Cursor 内でセマンティック コード検索を使用できるようになります。
インデックスとして設定したプロジェクトを開きます。
.cursorrulesファイルを作成し、以下を追加します。
カーソル エージェント モードの使用を開始し、ローカル ベクトル検索の実行を確認します。
This server cannot be installed
local-only server
The server can only run on the client's local machine because it depends on local resources.
ChromaDB を使用してコードベースのセマンティック検索機能を作成する Python ベースのローカル インデックス サーバー。これにより、Cursor IDE は外部サービスにデータを送信せずにコードのベクトル検索を実行できます。
Related MCP Servers
- Asecurity-licenseAqualityA server that provides data retrieval capabilities powered by Chroma embedding database, enabling AI models to create collections over generated data and user inputs, and retrieve that data using vector search, full text search, and metadata filtering.Last updated -13374Apache 2.0
- -security-license-qualityA local server that provides powerful code analysis and search capabilities for software projects, helping AI assistants and development tools understand codebases for tasks like code generation and refactoring.Last updated -4
- -security-license-qualityHTTP-based server that provides semantic code search capabilities to IDEs through the Model Context Protocol, allowing efficient codebase exploration without repeated indexing.Last updated -2084
- -security-license-qualityAn intelligent server that provides semantic code search, domain-driven analysis, and advanced code understanding for large codebases using LLMs and vector embeddings.Last updated -5MIT License