> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Builder

> Create and configure ClickHouse Agents in the Agent Builder

export const galaxyOnClick = eventName => () => {
  try {
    if (typeof window !== "undefined" && window.galaxy && eventName) {
      window.galaxy.track(eventName, {
        interaction: "click"
      });
    }
  } catch (e) {}
};

export const BetaBadge = ({link, galaxyTrack, galaxyEvent}) => {
  if (link) {
    return <a href={link} target="_blank" rel="noopener noreferrer" className="betaBadge" onClick={galaxyTrack && galaxyEvent ? galaxyOnClick(galaxyEvent) : undefined}>
                <Icon />
                <span>Beta</span>
            </a>;
  }
  return <div className="betaBadge">
            <Icon />
            <span>
                Beta feature. 
                <u>
                    <a href="/docs/beta-and-experimental-features#beta-features">
                        Learn more.
                    </a>
                </u>
            </span>
        </div>;
};

The Agent Builder is where you create and configure agents.

<Tip>
  **New to ClickHouse Agents?**

  Start with the [Quickstart](/products/cloud/features/ai-ml/agents/quickstart). The pages below cover each part of the builder in detail.
</Tip>

This section covers each part of the Agent Builder and contains the following pages:

| Page                                                                               | Description                                 |
| ---------------------------------------------------------------------------------- | ------------------------------------------- |
| [Code interpreter](/products/cloud/features/ai-ml/agents/builder/code-interpreter) | Sandboxed code execution.                   |
| [Web search](/products/cloud/features/ai-ml/agents/builder/web-search)             | Public-web lookups.                         |
| [Image generation](/products/cloud/features/ai-ml/agents/builder/image-generation) | Generate images from text.                  |
| [Vision](/products/cloud/features/ai-ml/agents/builder/vision)                     | Accept image inputs.                        |
| [MCP servers](/products/cloud/features/ai-ml/agents/builder/mcp-servers)           | Attach third-party MCP servers to an agent. |
| [Skills](/products/cloud/features/ai-ml/agents/builder/skills)                     | Reusable instruction packs.                 |
| [Subagents](/products/cloud/features/ai-ml/agents/builder/subagents)               | Delegate work to child agents.              |
