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

# Registry

> Compozy Registry is where AI development meets community collaboration. This initiative is designed to create an open, vibrant marketplace where developers can share, discover, and utilize AI components to accelerate their development process.

## Vision

Our vision is to foster a collaborative environment where AI components become more accessible, reusable, and community-driven. By sharing components, we can:

🚀   Accelerate AI development across projects<br />
🔄   Reduce duplicate efforts in common AI tasks<br />
✨   Promote best practices and standardization<br />
🤝   Enable knowledge sharing between developers<br />
🌱   Create a sustainable ecosystem of high-quality components

<CardGroup>
  <Card title="Component Catalog" icon="book">
    Browse our [complete registry](/registry) of community-contributed components.
  </Card>

  <Card title="Developer Guide" icon="code">
    Learn how to [create and share](/core/base-structure) your own components.
  </Card>
</CardGroup>

## Available Components

Browse through our growing collection of community-contributed components across different categories:

<Tabs>
  <Tab title="Agents">
    <CardGroup>
      <Card title="Marketing & SEO" icon="bullhorn" href="/registry/agents">
        Specialized agents for content optimization, market analysis, and SEO strategies.
      </Card>

      <Card title="Crypto & Trading" icon="chart-line" href="/registry/agents">
        Agents designed for cryptocurrency analysis, trading strategies, and market monitoring.
      </Card>
    </CardGroup>
  </Tab>

  <Tab title="Tools">
    <CardGroup>
      <Card title="Web & HTTP" icon="globe" href="/registry/tools">
        Tools for web scraping, HTTP requests, and browser automation.
      </Card>

      <Card title="Content & Format" icon="file-lines" href="/registry/tools">
        Utilities for content manipulation and format conversion.
      </Card>

      <Card title="Data & APIs" icon="database" href="/registry/tools">
        Components for data processing and API integration.
      </Card>

      <Card title="Files & Media" icon="photo-film" href="/registry/tools">
        Tools for handling files and media processing.
      </Card>
    </CardGroup>
  </Tab>

  <Tab title="MCP Servers">
    <CardGroup>
      <Card title="Data & File Systems" icon="hard-drive" href="/registry/mcp-servers">
        Servers for managing data storage and file operations.
      </Card>

      <Card title="Development Tools" icon="code" href="/registry/mcp-servers">
        Development-focused server components and utilities.
      </Card>

      <Card title="Web & Browser" icon="window" href="/registry/mcp-servers">
        Server components for web and browser interactions.
      </Card>
    </CardGroup>
  </Tab>
</Tabs>

## Using the Registry

<Steps>
  <Step title="Browse components">
    ```bash theme={"dark"}
    # List all available components
    compozy registry list

    # Search for specific components
    compozy registry search <query>

    # Get detailed information about a component
    compozy registry info <component-name>
    ```
  </Step>

  <Step title="Install and integrate">
    ```bash theme={"dark"}
    # Install a component from the registry
    compozy registry install <component-name>

    # Install a specific version
    compozy registry install <component-name>@<version>

    # Install multiple components
    compozy registry install <component1> <component2>
    ```
  </Step>

  <Step title="Configure settings">
    Components can be configured in your `compozy.yaml` file:

    ```yaml theme={"dark"}
    dependencies:
      tools:
        - "@compozy/web-tools@^2.1.0"
      agents:
        - "@compozy/assistant@^1.0.0"
    ```
  </Step>
</Steps>
