> ## Documentation Index
> Fetch the complete documentation index at: https://docs.augmentcode.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> An open-source library built on the Context Engine SDK that makes diverse sources searchable across agents and apps

<Warning>
  **Experimental API** - Context Connectors is experimental and subject to breaking changes.
</Warning>

**Build indexes** from Git repos (GitHub, GitLab, BitBucket) or documentation websites. Index code, documentation, runbooks, schemas, configs, and more. Use DirectContext in the Context Engine SDK for custom sources.

**Store indexes** on your local filesystem for fast & simple access, or in S3 for persistent storage in production apps.

**Search indexes** via interactive agent, MCP for AI integrations, CLI for quick searches, or DirectContext in the Context Engine SDK for custom implementations.

## Getting Started

**New to Context Connectors?** Here's a suggested path:

1. **Index and search** → [Index and Search Code](/context-services/context-connectors/quickstart/index-git-repos) (3 min)
2. **Connect an agent** → [Local MCP Server](/context-services/context-connectors/quickstart/claude-desktop-integration) (3 min)
3. **Build an app** → [Store Indexes in S3](/context-services/context-connectors/quickstart/share-with-s3) (5 min)
4. **Automate updates** → [GitHub Actions Auto-Indexing](/context-services/context-connectors/quickstart/github-actions-indexing) (5 min)

Or jump directly to any recipe below.

## Quickstart Recipes

<CardGroup cols={2}>
  <Card title="Index and Search Code" icon="magnifying-glass" href="/context-services/context-connectors/quickstart/index-git-repos">
    Index a Git repository and search or chat with it (3 minutes)
  </Card>

  <Card title="Index Websites" icon="globe" href="/context-services/context-connectors/quickstart/index-website">
    Crawl and index documentation sites (3 minutes)
  </Card>

  <Card title="Local MCP Server" icon="desktop" href="/context-services/context-connectors/quickstart/claude-desktop-integration">
    Add codebase search to Claude Desktop, Claude Code, Cursor, or another agent (3 minutes)
  </Card>

  <Card title="Remote MCP Server" icon="server" href="/context-services/context-connectors/quickstart/remote-mcp-server">
    Expose indexes via MCP over HTTP for remote clients (3 minutes)
  </Card>

  <Card title="Store Indexes in S3" icon="cloud" href="/context-services/context-connectors/quickstart/share-with-s3">
    Store indexes in S3 for persistent storage in production apps (5 minutes)
  </Card>

  <Card title="GitHub Actions Auto-Indexing" icon="rotate" href="/context-services/context-connectors/quickstart/github-actions-indexing">
    Automatically re-index on every push using GitHub Actions (5 minutes)
  </Card>

  <Card title="Auto-Index with Webhooks" icon="webhook" href="/context-services/context-connectors/quickstart/auto-index-webhook">
    Custom webhook server for auto-indexing (advanced, 10 minutes)
  </Card>
</CardGroup>

## Advanced Recipes

<CardGroup cols={2}>
  <Card title="Custom Indexer" icon="code" href="/context-services/context-connectors/advanced/custom-indexer">
    Build a custom indexer for any data source using DirectContext
  </Card>

  <Card title="Custom Store" icon="database" href="/context-services/context-connectors/advanced/custom-store">
    Create custom storage backends (local, S3, or any storage)
  </Card>

  <Card title="Custom Client" icon="plug" href="/context-services/context-connectors/advanced/custom-client">
    Build custom search clients for your applications
  </Card>
</CardGroup>

## Documentation

<CardGroup cols={2}>
  <Card title="CLI Reference" icon="terminal" href="/context-services/context-connectors/cli-reference">
    Complete command-line reference
  </Card>
</CardGroup>
