Related MCP Server Resources

Explore more AI models, providers, and integration options:

  • Explore AI Models
  • Explore AI Providers
  • Explore MCP Servers
  • LangDB Pricing
  • Documentation
  • AI Industry Blog
  • Powertools MCP Search Server
  • TxtAi Memory Vector Server
  • Code Analysis MCP Server
  • MkDocs MCP Search Server
  • Claude MCP Server
Back to MCP Servers
Workspace Code Search MCP Server

Workspace Code Search MCP Server

Public
LuotoCompany/cursor-local-indexing

A Python-based local indexing server that creates semantic search capabilities for codebases using ChromaDB, allowing Cursor IDE to perform vector searches on your code without sending data to external services.

Verified
python
0 tools
May 30, 2025
Updated May 30, 2025

Local Code Indexing for Cursor

An experimental Python-based server that locally indexes codebases using ChromaDB and provides a semantic search tool via an MCP (Model Context Protocol) server for tools like Cursor.

Setup

  1. Clone and enter the repository:

    git clone cd cursor-local-indexing
  2. Create a .env file by copying .env.example:

    cp .env.example .env
  3. Configure your .env file:

    PROJECTS_ROOT=~/your/projects/root # Path to your projects directory FOLDERS_TO_INDEX=project1,project2 # Comma-separated list of folders to index

    Example:

    PROJECTS_ROOT=~/projects FOLDERS_TO_INDEX=project1,project2
  4. Start the indexing server:

    docker-compose up -d
  5. Configure Cursor to use the local search server: Create or edit ~/.cursor/mcp.json:

    { "mcpServers": { "workspace-code-search": { "url": "http://localhost:8978/sse" } } }
  6. Restart Cursor IDE to apply the changes.

The server will start indexing your specified projects, and you'll be able to use semantic code search within Cursor when those projects are active.

  1. Open a project that you configured as indexed.

Create a .cursorrules file and add the following:


For any request, use the @search_code tool to check what the code does.
Prefer that first before resorting to command line grepping etc.

  1. Start using the Cursor Agent mode and see it doing local vector searches!
Publicly Shared Threads0

Discover shared experiences

Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!

Share your threads to help others
Related MCPs5
  • Powertools MCP Search Server
    Powertools MCP Search Server

    Enables LLMs to search through AWS Lambda Powertools documentation across multiple runtimes (Python,...

    2 tools
    Added May 30, 2025
  • TxtAi Memory Vector Server
    TxtAi Memory Vector Server

    Model Context Protocol (MCP) server implementation for semantic search and memory management using T...

    Added May 30, 2025
  • Code Analysis MCP Server
    Code Analysis MCP Server

    The server facilitates natural language interactions for exploring and understanding codebases, prov...

    4 tools
    Added May 30, 2025
  • MkDocs MCP Search Server
    MkDocs MCP Search Server

    Enables Claude and other LLMs to search through any published MkDocs documentation site using the Lu...

    Added May 30, 2025
  • Claude MCP Server
    Claude MCP Server

    A lightweight Flask-based server that enables Claude AI to perform real-time web searches via DuckDu...

    Added May 30, 2025